没备案?
为什么申诉已经通过了 网页访问还是提示已停止访问该网页?扫描二维码是可以正常访问的 微信识别图中二维码就提示已停止访问,什么鬼呀??? 域名:h5.yzfy120.com [图片]
2022-09-091970,懂的自然懂
我的账号是1970年冻结的,怎么解决啊?“由于长时间未使用,该帐号已于1970年01月01日 08:00被系统冻结。”账号已经找回了,但是还是显示这个 怎么解决啊
2022-09-08看到一种比较 Low 的方法,表单做成一个 H5,用 web-view 打开,在 H5 中实现文件上传
WebView中文件上传只能选择图片吗?安卓端文件上传只能选择图片吗?项目中有个需求是要上传word,excel等文档文件,但是在安卓端点击上传按钮后只能选择拍照或者是图库中的文件,但是在ios设备上可以选择文档等文件?有没有人遇到过这个问题的。 安卓端截图 [图片] IOS端截图 [图片]
2022-09-08如果在浏览器中打开 H5 页面,锁屏后能背景播放吗?
小程序中webview组件中的h5,播放中的音频,黑屏后会中断,能否不中断吗?小程序中webview组件中的h5,播放中的音频,黑屏后会中断,能否不中断吗?
2022-09-08你的这段代码外面有什么包含着吗?如果外面有对象或者函数包着,可能 this 引起歧义了
this.pageRouter.navigateTo一调用就是报错说未定义this.pageRouter.navigateTo({ url: './new-page' }) 安装官网这样写把TypeError: this.pageRouter.navigateTo is not a function 这个到底怎么用呀
2022-09-08直接上代码片段吧,这样描述只能靠猜测去帮你解决问题,效率太低
scroll-view滚动到底部无法触发事件?scroll-view用于滚动到底部后,触发事件跳转到下一个分类的顶部,但是一直触发不了事件,求教大佬
2022-09-07事件组织好遍历调用吧
wx.addPhoneCalendar(Object object)可以添加多条日程吗?可以一次向系统日历添加多条日程吗?
2022-09-07z-index 调大不行吗
echart在小程序中层级高过一切,要如何解决?调试器不会出现该问题,但真机调试会出现 底部一排按钮是fixed固定在下方的,但当滚动出现echart折线图时层级会比固定区域更高 要如何处理折线图的层级问题? [图片] [图片] [图片] <view class="container log-list"> <block wx:for="{{logs}}" wx:key="timeStamp" wx:for-item="log"> <view style="height: 500rpx;">1111</view> <view style="height: 500rpx;">2222</view> <view style="height: 500rpx;">3333</view> <view style="height: 500rpx;">4444</view> <view style="width: 100%;border: 1px solid red;height: 400rpx"> <ec-canvas force-use-old-canvas="true" style="width: 100%; height: 220px;" id="mychart-dom-bar" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas> </view> <view style="height: 500rpx;">5555</view> <cover-view class="buttom">哈哈哈哈</cover-view> </block> </view> .log-list { display: flex; flex-direction: column; padding: 40rpx; } .log-item { margin: 10rpx; } .buttom{ height: 100px; line-height: 100px; background-color: pink; width: 100vw; position: fixed; bottom: 0; text-align: center; } // logs.js const util = require('../../utils/util.js') import * as echarts from './ec-canvas/echarts'; let chart = null; const initChart = (canvas, width, height, dpr) => { chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr // 像素 }); canvas.setChart(chart); let option = { grid: { // top: 0, left: '40px', right: '20px', // bottom: 0, width:'auto', height:'auto' }, xAxis: { type: 'category', data: [1, 2, 3,4, 5, 6], axisLine: { lineStyle: { color: '#909090', width: 1, //这里是为了突出显示加上的 } }, splitLine: { show: false, } }, yAxis: { type: 'value', minInterval: 1, axisLine: { lineStyle: { color: '#909090', width: 1, //这里是为了突出显示加上的 } }, splitLine: { show: true, //隐藏或显示 lineStyle:{ color: ['#EBEBEB'], width: 1, type: 'solid' } }, }, series: [ { data: [1, 2, 4, 56,6 ,7 ], type: 'line', symbol:'none', color: '#FC2853' } ] }; chart.setOption(option); return chart; } Page({ data: { logs: [], ec: { onInit: initChart }, }, onLoad() { } })
2022-09-07因为 InnerAudioContext 贯穿整个上下文,每次创建不会重新实例化一个对象出来,所以以最后一次 src 赋值为准,建议如下修改: const innerAudioContext = wx.createInnerAudioContext(); tapevent_01(){ innerAudioContext.src = '/audio/voice_01.mp3' innerAudioContext.play(); }, tapevent_02(){ innerAudioContext.src = '/audio/voice_02.mp3' innerAudioContext.play(); }, tapevent_03(){ innerAudioContext.src = '/audio/voice_03.mp3' innerAudioContext.play(); }, tapevent_04(){ innerAudioContext.src = '/audio/voice_04.mp3' innerAudioContext.play(); }, tapevent_05(){ innerAudioContext.src = '/audio/voice_05.mp3' innerAudioContext.play(); }, PS:为了代码维护方便,把 src 属性值通过页面元素的 data-* 传递,点击播放事件用一个函数搞定。
创建多个InnerAudioContext实例分别对应不同音频,点击事件播放音频总是播放最后一个?用wx.createInnerAudioContext()创建了多个实例,每个实例src对应不同的音频文件,不同的点击事件播放对应的音频,开发者工具模拟器和安卓手机测试都正常, iPhone和iPad上测试却是无论点击哪个按钮都是播放最后一个实例的音频,请问这是写法问题还是bug,有没有什么解决方案实现点击不同按钮播放对应音频? 代码如下: index.js const app = getApp() const innerAudioContext_1 = wx.createInnerAudioContext(); const innerAudioContext_2 = wx.createInnerAudioContext(); const innerAudioContext_3 = wx.createInnerAudioContext(); const innerAudioContext_4 = wx.createInnerAudioContext(); const innerAudioContext_5 = wx.createInnerAudioContext(); innerAudioContext_1.src = '/audio/voice_01.mp3' innerAudioContext_2.src = '/audio/voice_02.mp3' innerAudioContext_3.src = '/audio/voice_03.mp3' innerAudioContext_4.src = '/audio/voice_04.mp3' innerAudioContext_5.src = '/audio/voice_05.mp3' Page({ data: { }, tapevent_01(){ innerAudioContext_1.play(); }, tapevent_02(){ innerAudioContext_2.play(); }, tapevent_03(){ innerAudioContext_3.play(); }, tapevent_04(){ innerAudioContext_4.play(); }, tapevent_05(){ innerAudioContext_5.play(); }, }) index.wxml <button type="primary" bindtap="tapevent_01">播放1</button> <button type="primary" bindtap="tapevent_02">播放2</button> <button type="primary" bindtap="tapevent_03">播放3</button> <button type="primary" bindtap="tapevent_04">播放4</button> <button type="primary" bindtap="tapevent_05">播放5</button> 代码片段:https://developers.weixin.qq.com/s/JsEeA5mt7iCf
2022-09-07域名被加入腾讯黑名单里了,别直接在微信聊天窗口里点击链接,复制链接然后再去浏览器粘贴访问,这种以后在腾讯所有的产品里(微信、QQ等)都会被拦截,除非申诉
小程序打不开了,报错,商店后台也打不开了。第三方跑路了?[图片]
2022-09-07