微信小程式-0.11.122100版本更新問題
阿新 • • 發佈:2019-02-07
官方更新了122100版本,一共有90幾處改動。這裡先不一一列舉了。
一 redirectTo和navigateTo不能再跳轉到帶有tab選項卡的頁面
小程式新增了一個介面wx.switchTab。這個介面是專門用來跳轉到帶有tabbar的頁面。Page({
onTap: function (event) {
wx.switchTab({
url: "../posts/post"
});
}
})
請注意switchTab只能跳轉到帶有tab的頁面,不能跳轉到不帶tab的頁面!跳轉不帶tab的頁面還是需要使用redirect或者navigate!所以,如果如果你的post頁面還沒有加入tab選項卡,請依然使用redirect或者navigate!二 Page的onLoad函式裡不可以再直接對data變數賦值做資料繫結
Page({
data: {
},
onLoad: function () {
// this.data.postList = postsData.postList
this.setData({
postList:postsData.postList
});
},
所有用this.data做資料繫結的地方,更新成this.setData三 wx.request 方法的Content-Type引數
function http(url, callBack ) {
wx.request({
url: url,
method: 'GET',
header: {
"Content-Type": "json"
},
success: function (res) {
callBack(res.data);
},
fail: function (error) {
console.log(error)
}
})
}
112301版本更新後,application/json引數不可以使用了。但形如content-type: ‘ ’,content-type:xxx,content-type:aaaaaaa 都可以成功呼叫。