1、index.js怎样传递参数到app.js中的函数tm呢?
1、app.js中的函数可以传参数到index.js, index.js怎样传递参数到app.js中的函数tm呢?求 大师指导
一、app.js中的函数传参数到index.js
1、 index.js:
app.tm(function ™ {
console.log™
})
2、app.js:
tm: function (cb) {
var dd = ‘yyy’
typeof cb == “function” && cb(dd) //返回输出
},
二、index.js怎样传递参数到app.js中的函数data???
1、 index.js:
onload:function(){
this.setData({
mm:20
})
}
2、app.js:
data: function () {
console.log(this.data.mm)
},