关于不同生命周期函数中发起ajax请求,界面渲染是怎么进行的呢?
关于不同生命周期函数中发起同一个ajax请求,界面渲染是怎么进行的呢?
举个栗子:如下面这个函数,加载的时候会触发两次,想具体了解一下,dom是如何渲染的?(应该是不提倡这样写的,这样做的弊端又有哪些呢?)
onLoad: function (options) { var that = this ; that.getProductById(tempPinId,tempShopId) } |
onShow: function () {
var that = this;
that.getProductById(tempPinId,tempShopId)
}