欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue.js 踩坑记之双向绑定

程序员文章站 2022-06-14 13:45:42
这篇体验一下vue的双向绑定

这篇体验一下vue的双向绑定

<html>
<head>
  <meta charset="utf-8">
</head>
<body>
  <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
  <div id="app">
    <input type="text" v-model="currenttime" placeholder="当前时刻">
    <h1>当前时刻{{ currenttime }}</h1>
  </div>
  <script>
  var app = new vue({
    el:'#app',
    data:{
      currenttime: new date()
    },
    mounted:function(){
      var _this = this;
      this.timer = setinterval(function(){
        _this.currenttime = new date();
      },1000);
    },
    beforedestroy:function(){
      if(this.timer){
        clearinterval(this.timer);
      }
    }
  });
  </script>
</body>
</html>

Vue.js 踩坑记之双向绑定 

{{ }} 是所谓的文本插值的方法,目的是显示双向绑定的数据

mounted 表示el挂载到实例上调用的事件

beforedestory 是实例销毁以前调用

在上例中,在mounted事件中创建了一个定时器,每隔一秒就把当前时间写入文本框中,由于双向绑定的原因,h1标签的文本也会跟着变化,和文本框的文本保持一致。在beforedestory事件里在vue实例销毁前则会清除定时器

总结

以上所述是小编给大家介绍的vue.js 踩坑记之双向绑定,希望对大家有所帮助