问题模块 框架类型 终端类型 微信版本 基础库版本
框架 微信小程序 工具 无 1.9.1
/* index.json */
{
"usingComponents": {
"child": "../../components/Child/Child"
}
}
/* index.js */
Page({
data : {
a : [1],
b : [2]
}
})
/* index.wxml */
//----------------------------------
/* Child.json */
{
"component": true
}
/* Child.js */
Component({
properties: {
tags : {
type : Array,
}
},
ready(){
console.log(this.data.tags);
},
})
/* console results*/
// [1]
// [2]
// []
最后的console输出的是空数组
微信小程序开发问题解答
微信小程序开发者回答:
你好,{{ }} 中不支持绝大多数的 JS 内置对象方法,仅支持简单运算符。
本文网址:http://www.91bianli.com/weixinxiaochengxu/49065.html