显示对象的键
编辑教程显示对象的键
在实际的开发过程中可能需要显示出对象数组的键或者值,如果需要同时显示出对象的键和值可以使用{{#each-in}}标签。
注意:each-in标签是Ember 2.0才有的功能,之前的版本是无法使用这个标签的,如果是2.0一下的版本会报错:Uncaught Error: Assertion Failed: A helper named 'each-in' coulad not be found
准备工作:使用Ember CLI生成一个component,与此同时会生成一个对应的模板文件。
ember generate component store-categories
执行上述命令得到下面的3个文件:
- app/components/store-categories.js
- app/templates/components/store-categories.hbs
- tests/integration/components/store-categories-test.js
然后在app/router.js增加一个路由设置,在map方法里添加this.route('store-categories');; 此时可以直接访问这里
http://guides.emberjs.com/v2.0.0/templates/displaying-the-keys-in-an-object/
在组件中增加测试数据
// app/components/store-categories.js
import Ember from 'ember';
export default Ember.Component.extend({
// https://guides.emberjs.com/v2.4.0/components/the-component-lifecycle/
willRender: function() {
// 设置一个对象到属性“categories”上,并且设置到categories属性上的对象结构是:key为字符串,value为数组
this.set('categories', {
'Bourbons': ['Bulleit', 'Four Roses', 'Woodford Reserve'],
'Ryes': ['WhistlePig', 'High West']
});
}
));
willRender方法在组件渲染的时候执行
有了测试数据之后我们怎么去使用each-in标签遍历出数组的键呢?
<ul>
{{#each-in categories as |category products|}}
<li>{{category}}
<ol>
{{#each products as |product|}}
<li>{{product}}</li>
{{/each}}
</ol>
</li>
{{/each-in}}
</ul>
上述模板代码中第一个位置参数category就是迭代器的键,第二个位置参数product就是键所对应的值。
为了显示效果,在application.hbs中调用这个组件,组件的调用非常简单,直接使用{{组件名}}方式调用。
{{store-categories}}
重渲染
{{each-in}}表达式不会根据属性值变化而自动更新。上述示例中,如果你给属性categories增加一个元素值,模板上显示的数据不会自动更新。为了演示这个特性在组件中增加一个触发属性变化的按钮,首先需要在组件类app/components/store-categories.js中增加一个action方法(有关action会在后面的章节介绍,暂时把他看做是一个普通的js函数),然后在app/templates/components/store-categories.hbs中增加一个触发的按钮。
import Ember from 'ember';
export default Ember.Component.extend({
// willRender方法在组件渲染的时候执行
willRender: function() {
// 设置一个对象到属性“categories”上,并且设置到categories属性上的对象结构是:key为字符串,value为数组
this.set('categories', {
'Bourbons': ['Bulleit', 'Four Roses', 'Woodford Reserve'],
'Ryes': ['WhistlePig', 'High West']
});
},
actions: {
addCategory: function(category) {
console.log('清空数据');
let categories = this.get('categories');
// console.log(categories);
categories['Bourbons'] = [];
// 手动执行重渲染方法更新dom元素,但是并没有达到预期效果
// 不明原因
this.rerender();
}
}
});
<ul>
{{#each-in categories as |category products|}}
<li>{{category}}
<ol>
{{#each products as |product|}}
<li>{{product}}</li>
{{/each}}
</ol>
</li>
{{/each-in}}
</ul>
<button onclick={{action 'addCategory'}}>点击清空数据</button>
即使是手动调用了rerender方法也没办法触发重渲染,界面显示的数据并没有发生变化。
空数组处理
空数组处理与表达式{{each}}一样,同样是判断属性不是null、undefined、[]就显示出数据,否则执行else部分。
{{#each-in people as |name person|}}
Hello, {{name}}! You are {{person.age}} years old.
{{else}}
Sorry, nobody is here.
{{/each-in}}
选择支付方式:
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间