- 如何解决typescript中无法引入npm包的问题?
我使用开发者工具自带的模板创建了ts基础项目,后使用npm install 安装依赖包,生成了node_modules文件夹。但是我发现在miniprogram中使用的时候报错找不到对应的module,请问这个该如何解决? [图片] [图片]
2022-11-27 - 头像昵称填写能力,手机端真机调试显示错位?
像昵称填写能力 基础库:2.26.0 ios版本:16.0 开发者工具样式一切正常,真机预览调试都错位. [图片][图片]
2022-09-18 - 列表渲染后获取元素的top信息不准?
当我在scrollview内监听滚动事件,动态获取某个id为today元素的top值发现一个问题: 当我scrollview内列表进行重新渲染的时候,比如说在id="today"元素前面新增了几个dom结构,发现此时top的计算有误。 [图片] 可以看到图片,按理说当我的列表新增加元素以后,这个top应该是增大的,这里怎么会变小了呢?
2020-11-01 - swiper组件动态渲染的问题?
swiper组件的动态渲染问题? 问题描述:是这样的我要做一个答题类的小程序,考虑到题目较多的情况下,使用swiper动态渲染,固定一个数组切片来实现。 但是我在使用swiper的时候,重新生成数组列表渲染的时候,总会报错: TypeError: Cannot read property '$$' of undefined at HTMLElement._attached.d._touchstartHandlerForDevtools 说是用current-item-id的问题,所以我把当前项的判断方式改成基于current的方式,每次渲染完毕后判断当前项目的id在切片中的索引方式。 还是报上面的错误,如果解决不了只能考虑动态追加数组的方式来实现了。 代码片段: https://developers.weixin.qq.com/s/ZD5KZamy76hV 各位有经验的大佬可以看一下!
2020-05-07 - swiper组件动态渲染出现undenfined?
swiper组件 场景复现:我有一个列表数组,使用current-item-id来定位当前元素,每次移动到列表头部或者尾部动态切分列表,重新渲染swiper,我发现在截取数组重新渲染的时候 会出现如下错误: webviewScriptError Cannot read property '$$' of undefined TypeError: Cannot read property '$$' of undefined at HTMLElement._attached.wx.getPlatform._touchstartHandlerForDevtools 感觉是不是current-item-id的定位出现了问题,但是我的渲染数组实实在在是有item-id的元素的。 哪些有经验的大佬可以帮忙看看,感谢! 代码如下: <swiper :current-item-id="'index_'+ currentIndex" style="height: 100%;" @change="changeSubject" v-if="subjectList.length > 0"> <swiper-item v-for="(item,index) in subjectList" :item-id="'index_'+item.index" :key="item.index"> <view class="d-flex"> <view class="title"> {{item.title}} </view> </view> </swiper-item> </swiper> getSubjectList(){ if(this.startIndex<this.currentIndex && this.currentIndex<this.endIndex){ return; } //到达最后了数组扩容一下 if(this.currentIndex == this.endIndex){ this.startIndex = Math.max(this.currentIndex - 2,0); this.endIndex = Math.min(this.endIndex + this.step,this.todayTask.subjects.length - 1) } if(this.currentIndex == this.startIndex){ this.startIndex = Math.max(this.startIndex - this.step,0) this.endIndex = Math.min(this.currentIndex + this.step,this.todayTask.subjects.length - 1) } this.subjectList = []; this.subjectList = this.todayTask.subjects.slice(this.startIndex,this.endIndex + 1) console.log(this.subjectList) }, changeSubject(e){ this.currentIndex = e.detail.currentItemId.replace('index_','') - 0 console.log(this.currentIndex) this.getSubjectList() },
2020-05-07 - 开发者工具新建项目后报错?
开发者版本:1.02.2004020 新建项目后控制台报错: VM17:1 appServiceSDKScriptError Cannot read property 'operationInfo' of undefined;at api onAppRoute callback function TypeError: Cannot read property 'operationInfo' of undefined appServiceSDKScriptError Cannot read property 'operationInfo' of undefined;at wxConfig.onReady callback TypeError: Cannot read property 'operationInfo' of undefined
2020-04-04 - 已上线的小程序,本地调用生成无限制二维码问题?
我有两个已经2018年已经上线的小程序,现在在本地使用生成无限制的小程序码接口。 https://api.weixin.qq.com/wxa/getwxacodeunlimit 我发现不管传不传page参数,都会提示invalid page hint: [w6gwNa06802372] 求解答?是不是只有在业务域名下请求此接口才可以?因为我确定小程序页面的pages/index/index是发布的。
2020-03-31