个人案例
- 新创建的项目为什么报403 (Forbidden)?
新创建的项目为什么报403 (Forbidden)? [图片]
2023-03-05 - 新建项目报错(the server responded with a status of 403)?
新建项目什么都没写就一堆报错,而且这个错误不断增加。 [图片]
2023-03-05 - the server responded with a status of 403?
为什么突然会报一大堆错误 [图片]
2023-03-05 - innerAudioContext.buffered 真机调试获取不到数据?
innerAudioContext.buffered 真机调试获取不到数据? https://developers.weixin.qq.com/s/1gYHe2m87eGH 图一:开发工具可以正常获取数据 [图片] 图二:真机调试获取不到数据 [图片]
2023-02-15 - 大音频文件缓存问题?
音频文件偏大,在开发工具正常 onCanplay 、 _start 都可以获取到 innerAudioContext.buffered, 但是手机端就出问题了。 0、0 打印的是innerAudioContext.currentTime 和 innerAudioContext.buffered; 如果音频文件过大,是不是使用 wx.createWebAudioContext() 这个api 好些,在网上搜索了一下,说是有点占用内存,就不太敢用了。 图一 开发工具 [图片] 图二 真机调试播放再暂停就疯狂输出了。 [图片]
2023-02-15 - innerAudioContext.onCanplay() 如何获取音频总时长?
innerAudioContext.onCanplay() 方法获取到的 duration 值为“只读”格式,请问怎么能取到 duration 值? src 已经获取到。 [图片] [图片]
2023-02-14 - 添加音频报错“Cannot read property 'duration' of undef”?
Cannot read property 'duration' of undefined [图片] [图片]
2023-02-14 - 使用 Proxy() 监听对象,如果值被修改,如何即时渲染到页面?
使用 Proxy() 监听 this.data 内的某个对象,如果值被修改,如何即时渲染到页面? data: { obj: { index: 0; } } function proxy1(target, prop, value) { let result = false; const proxy = new Proxy(target, { set(target, prop, value) { if (prop === "index" && value != 0) { return Reflect.set(...arguments); } else { result = true; return true; } }, }); proxy[prop] = value; return proxy; } proxy1(this.data.obj, "index", 0);
2023-02-13 - 自定义组件 pageLifetimes 中的 show()方法,开发工具不执行?
自定义组件 pageLifetimes 中的 show()方法,首次进入页面时开发工具不执行,真机调试正常执行。
2023-02-13 - swiper 内容无法居中?
swiper 内容无法居中? [图片] //curInfo:0 <swiper class="swiper" current="{{curInfo}}" circular="true" previous-margin="184rpx" next-margin="184rpx"bindchange="changeSwiper"> <swiper-item wx:for="{{3}}" wx:key="item" class="flex-center item_swiper"> <view class="flex-center swiper_info"> <text class="title_50 text_600">{{index}}</text> </view> </swiper-item> </swiper> .swiper { width: 100vw; height: 460rpx; background-color: #FDF0F7; border-top: 10rpx solid #111111; border-bottom: 10rpx solid #111111; } .item_swiper { width: 100% !important; height: 100% !important; justify-content: center; } .swiper_info { width: 380rpx !important; height: 380rpx !important; background-color: #FEC82E; border-radius: 100%; justify-content: center; } .swiper_case { width: 100%; height: 100%; }
2023-02-12