uniAPP·函数方法名书写并调用
【methods: {】
函数方法在methods中定义
Getaaaaa: function(e) {// 业务代码
//e.标示形参数
console.log("Getaaaaa接收:" + e);
return '返回值,也可以没有return 返回值'
},
【template】
<view class="footer_1-1" @tap="Getaaaaa(12333333)">
业务代码
<view>
@tap=”Get1(‘我是e’)”
647 Views