wxs 函数被执行多次是什么原因
<wxs module=“foo”>
var sayHello = function(){
console.log(‘hello’);
return ‘hello’;};
module.exports = {
sayHello:sayHello
}
</wxs>{{foo.sayHello()}}
<wxs module=“foo”>
var sayHello = function(){
console.log(‘hello’);
return ‘hello’;};
module.exports = {
sayHello:sayHello
}
</wxs>{{foo.sayHello()}}