加载中...

1.2.1 数据绑定


<span class="weex-version">0.4</span>

Weex使用_mustache_的语法({{...}})来对<template>中的模板和<script>里的数据进行绑定. 一旦数据额模板绑定了, 数据上的修改会实时的在模板内容中生效.

绑定数据path

<template>
  <container>
    <text style="font-size: {{size}}">{{title}}</text>
  </container>
</template> <script>  module.exports = {  data: {  size: 48,  title: 'Alibaba Weex Team'  }  } </script>

上面的代码会把titlesize的数值绑定到模板内容上.

我们也可以通过.符号来绑定数据结构中的字段. 看一下下面的代码片段:

<template>
  <container>
    <text style="font-size: {{title.size}}">{{title.value}}</text>
  </container>
</template> <script>  module.exports = {  data: {  title: {  size: 48,  value: 'Alibaba Weex Team'  }  }  } </script>

In-template 表达式

进行数据绑定时, Weex支持一些简单的javascript表达式,例如:

<template>
  <container style="flex-direction: row;">
    <text>{{firstName + ' ' + lastName}}</text>
  </container>
</template> <script>  module.exports = {  data: {  firstName: 'John',  lastName: 'Smith'  }  } </script>

这些表达式会在当前的上下文中进行演算.

NOTE: 每个绑定只能包含单个表达式

Computed Properties

<span class="weex-version">0.5</span>

in-template表达式相比于简单的操作符方便多了. 但如果需要在模板里实现更多的逻辑判断,你可以使用'computed property'.

例如:

<template>
  <container style="flex-direction: row;">
    <text>{{fullName}}</text>
    <text onclick="changeName"></text>
  </container>
</template> <script>  module.exports = {  data: {  firstName: 'John',  lastName: 'Smith'  },  computed: {  fullName: {  get: function() {  return this.firstName + ' ' + this.lastName  },   set: function(v) {  var s = v.split(' ')  this.firstName = s[0]  this.lastName = s[1]  }  }  },  methods: {  changeName: function() {  this.fullName = 'Terry King'  }  }  } </script>

我们在这段代码里定义了一个computed property fullName. 它所提供的函数能作为gettter函数实现连接字符串firstNamelastName.

除此以外当由点击出发了changeName后, setter函数会被调用,并且this.firstNamethis.lastName会对应的更新.

NOTE: datamethods 不能有重复的字段. 因为在执行的上下文中 -- this, 能同时指向这两者.

数据绑定中的特殊属性

样式: styleclass

组件的样式能够通过style属性进行绑定:

<template>
  <text style="font-size: {{size}}; color: {{color}}; ...">...</text>
</template>

样式也能够通过class属性实现绑定,多个classname通过空格分隔:

<template>
  <container>
    <text class="{{size}}"></text>
    <text class="title {{status}}"></text>
  </container>
</template>

在上面的代码中如果{{size}}{{status}} 是空值, 就只有class="title" 会被渲染.

事件处理器: on...

on...开头的就是用于指定事件处理器的属性, 属性名中'on'之后的部分就是事件的类型, 属性的值就是对应进行事件处理的函数名. 不需要添加mustache语法中的大括号或者函数调用时的圆括号.

<template>
  <text onclick="toggle">Toggle</text>
</template> <script>  module.exports = {  methods: {  toggle: function () {  // todo  }  }  } </script>

if & repeat

if 属性能够通过true/false值控制组建是否显示.

<template>
  <container style="flex-direction: column;">
    <text onclick="toggle">Toggle</text>
    <image src="..." if="{{shown}}"></image>
  </container>
</template> <script>  module.exports = {  data: {  shown: true  },  methods: {  toggle: function () {  this.shown = !this.shown  }  }  } </script>

Weex通过repeat属性来生成列表.

NOTE: 当你修改 data 中的数组时,在写法上会受到一定的限制,具体如下

直接通过 index 修改数组的某个项目 (如 vm.items[0] = {};) 是不会触发视图自动更新的。我们在数组的原型上提供了一个额外的方法:$set(index, item).

// 和 `example1.items[0] = ...` 作用相同,但会自动触发视图更新
example1.items.$set(0, { childMsg: 'Changed!'}) 

直接通过修改 length 来改变数组长度 (如 vm.items.length = 0) 也是不会触发视图自动更新的。我们推荐您直接赋值一个新的空数组把旧的替换掉。

// 和 `example2.items.length = 0` 作用相同,但会自动触发视图更新
example2.items = [] 

static

static 属性可以取消数据绑定机制,从而数据更新不会再同步到 UI 界面。

<template>
  <div static>
    <text>{{ word }}</text>
  </div>
</template> <script>  module.exports = {  ready: function() {  this.word = 'Data changes'  },  data: {  word: 'Hello, static'  }  } </script>

如上所示,添加 static 关键字,渲染结果会是 Hello, static,相当于渲染一个静态的节点,ready 函数中对数据 word 的改变不会被监听,从而 text 值不会改变。
static 属性设计的目的是为了降低长列表、纯静态页面的内存开销。小心的使用它,因为它可能会中断你的页面逻辑。


第 1-1 条, 共 1 条.
大胖子 2017-04-14 10:08:20
你的这个文档使基于weex的哪个版本的啊回复