axios.get('__MODULE__/Point/getPointProduct', {
params: {
productno:app.pointproduct_no
}
}).then(function (response) {
app.thisProductNewPrice=response.data[0].NewPrice;
});
app.pointproduct_no获取不到值
但是为什么以下代码加一个定时器就可以执行
setInterval(function(){
axios.get('__MODULE__/Point/getPointProduct', {
params: {
productno:app.pointproduct_no
}
}).then(function (response) {
app.thisProductNewPrice=response.data[0].NewPrice;
});
},1000);
一只萌萌小番薯
相关分类