console提示:showModal:fail parameter error: parameter.content should be String instead of Undefined;
緣由是小程序
Page({ data: { userInfo: {}, hasUserInfo: false, dataList:{}, currentTab: 0 },
data.currentTab對象中的值應該爲字符串"0"
正確的賦值打開方式應該是:this
this.setData({ currentTab: current +"" })
不得不說小程序中的坑真TM多,賦值類型還得是字符串...code