vue.js写一个简易计算器(双向数据绑定)

初始样式
可以进行加减乘除的运算

<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title></title>
  <script src="Vue.min.js"></script>
</head>

<body>
  <div id="app">
    <input type="text" v-model="n1">

    <select v-model="opt">
      <option value="+">+</option>
      <option value="-">-</option>
      <option value="*">*</option>
      <option value="/">/</option>
    </select>

    <input type="text" v-model="n2">
    <input type="button" value="=" @click="cal">
    <input type="text" v-model="result">
  </div>
  <script>
    var vm = new Vue({
      el: '#app',
      data: {
        n1: "0",
        n2: "0",
        result: "0",
        opt: "+"
      },
      methods: {
        cal() {
          // switch (this.opt) {
          //   case '+':
          //     this.result = parseInt(this.n1) + parseInt(this.n2)
          //     break;
          //   case '-':
          //     this.result = parseInt(this.n1) - parseInt(this.n2)
          //     break;
          //   case '*':
          //     this.result = parseInt(this.n1) * parseInt(this.n2)
          //     break;
          //   case '/':
          //     this.result = parseInt(this.n1) / parseInt(this.n2)
          //     break;
          // }
          //投机取巧的方式,尽量少用
          var codeStr = 'parseInt(this.n1) ' + this.opt + ' parseInt(this.n2)'
          this.result = eval(codeStr)
        }

      }
    })
  </script>

</body>

</html>

我注释的部分是我们常规的逻辑写法,第二种方法便于我们理解双向数据绑定,虽然代码简洁,一般数据处理比较复杂时最好不用。

猜你喜欢

转载自blog.csdn.net/qinsangdilvzhi/article/details/89211516