<text>{{test(num)}}</text>
......
methods: {
test: function (num) {
console.log(num);
//do something
return num;
}
test函数可以调用成功,但是返回到{{}}却是undefine
vue是有这种用法,不知道uni是否不支持,或者有没有其它方案可以满足需求
<text>{{test(num)}}</text>
......
methods: {
test: function (num) {
console.log(num);
//do something
return num;
}
test函数可以调用成功,但是返回到{{}}却是undefine
vue是有这种用法,不知道uni是否不支持,或者有没有其它方案可以满足需求
0 个回复