我定义了以下的数据对象:
const AV = require('av-weapp-min.js')
class News extends AV.Object{
set title(value){
this.set('title', value);
}
get title(){
return this.get('title');
}
}
AV.Object.register(News);
module.exports = News;
但在wxml中,通过以下在代码是无法取得title属性的。
<i-panel class="cell-panel-demo"><i-cell wx:for="{{news_list}}" wx:key="objectId" title="{{item.title}}" is-link value="详细信息"></i-cell></i-panel>
但是通过item.attributes.title这样的方式就可以。是这样的吗?
<i-panel class="cell-panel-demo"><i-cell wx:for="{{news_list}}" wx:key="objectId" title="{{item.attributes.title}}" is-link value="详细信息"></i-cell></i-panel>