小程序的开发记录

获取或设置data里的值

this.data.name   //不同于vue,要加一个data

this.setData({
      name: 'bill gates'
    })

js文件里定义函数和调用函数

getCart: function () {
    //具体函数代码
}

//调用
var that = this;
that.getCart();

猜你喜欢

转载自www.cnblogs.com/bqh10086/p/12620804.html
今日推荐