开发工具更新版本后就出现了这个问题,哎,微信团队这个测试质量堪忧
kbone使用Promise封装的请求在开发者工具中无法显示回调内容kbone使用Promise封装的请求在开发者工具中无法显示回调内容。 封装的请求函数: const http = (url, data, authorization, method, showToast) => { return new Promise(function (resolve, reject) { kboneAPI.request({ url: `${url}`, method: method ? method : 'POST', data: data, header: header, success: function (res) { resolve(res.data); }, fail: function (res) { reject({ error: '网络错误', code: 0 }); }, }) }) } export default http; 页面中使用: http("/api", param, undefined).then((results) => { //results 开发者工具无法进入这里 })
2020-09-19红色框处是指未执行到这个位置
开发工具换了版本后请求http服务,外层无法.then了,更新之前是好的[图片]
2020-09-19麻烦各位前端大神给看下
<KPickerView @change="changeIndex"> 事件无响应,为何?<KPickerView @change="changeIndex" ref="pickerview" v-on:click="changeIndex" v-model="multiArray" indicator-style="height: 40px;" style="font-size:0.5rem;width: 100%;position: relative; height: 300px;"> <KPickerViewColumn v-model="time"> <KView v-for="(item,index) in listYears" style="line-height: 40px;" :key="index" > {{item}} </KView> </KPickerView>
2020-06-12遇到同样的问题,希望官方尽快给看下
KPickerView使用时,change事件不能触发?代码简写如下,发现不能出发change事件,不知道为何 <KPickerView @change="changeIndex" :value="multiArray"> <KPickerViewColumn> <KView v-for="(item,index) in listCity" :key="index" > {{item}} </KView> </KPickerViewColumn> <KPickerViewColumn> <KView v-for="(item,index) in listTime" :key="index" > {{item}} </KView> </KPickerViewColumn> </KPickerView> data() { return { multiArray: [0, 0], listCity: ['北京', '上海', '广州'], listTime: ['1月', '2月', '3月'], } },
2020-06-10