学习笔记四--数据绑定

mustache是javascript的模板引擎,模板引擎的作用是使用户界面和业务数据分离

1、数据绑定--{{}}实现绑定
Weex使用mustache语法{{}}将<template>模板和<script>中的数据绑定。绑定后,script中数据修改回显示在template上。

2、数据绑定表达式--支持简单的JavaScript表达式

<template>
  <div style = "flex-direction:row;">
    <text>{{firstName + '  ' + lastName}}</text>
  </div>
</template>


<script>
 module.exports = {
  data:{
    firstName :'Jone',
    lastName  : 'Smith'
  }
}
</script>

注意:变量赋值不是用“=”,firstName:’Jone’

3、计算属性
(1)选项computed对计算属性fullName进行简单计算

<template>
  <div style = "flex-direction:row;">
    <text>{{fullName}}</text>
    <text onclick="changeName" style="margin-left:10">change name</text>
  </div>
</template>

<script>
  module.exports = {
    data:{
      firstName:'wan',
      lastName:'meme'
    },

    computed:{
      fullName:function(){
        return this.firstName + ' '+this.lastName
      }
    },

    methods:{
      changeName:function(){
        this.lastName = 'qiqi'
      }

    }

  }
</script>

(2)定义计算属性的get和set方法

<template>
  <div style = "flex-direction:row;">
    <text>{{fullName}}</text>
    <text onclick="changeName" style="margin-left:10;">change name</text>
  </div>
</template>

<script>
  module.exports = {

    data:{
      firstName:'Jone',
      lastName:'Anith'
    },

    computed:{
      fullName:{

       get:function(){
         return this.firstName+ ' '+this.lastName
       }, 

       set:function(e){
         var s = e.split(' ')
         this.firstName = s[0]
         this.lastName  = s[1]
       }

      }
    },
    methods:{
      changeName:function(){
        this.fullName = 'Terry King'

      }

    }



  }
</script>

注意:(1)split()函数,将内容分离为数组,此处e表示参数为fullName
(2)使用data选项中的变量时,使用组件实例的this访问,即“this.”来引用。

4、数据绑定在<template>中的特殊用法
样式:style或class
组件的样式能通过style特性绑定

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

程序员的修养

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值