大哥你这this.video哪来的?
如何解决video sendDanmu定义失败呢?[图片][图片][图片] 这是我想写一个video弹幕发送的一个小功能 但是这样写会报错,有没有懂得大佬帮忙指正下,谢谢啦
2022-05-13把这条线外下拉看看 [图片]
请教一下使用了wx.setStorageSync为什么存储的没有数据?[图片]
2022-05-12青青做的顾客的妈妈这句我觉得可以算
这也算有色情内容?如图所示 这怎么就有色情了? [图片]
2022-05-12你的搜索结果没看到定义的方法呀 [图片]
ReferenceError: getNewsDetail is not defined,该怎解决?图片轮播[图片][图片]
2022-05-12你打印的list是对象不是数组,自然没有list.length,t_total是什么意思?循环里面做了计算,反手就是被order.total赋值,num可以用Object.keys(list).length
小程序开发 list数组不会获取值?onLoad:function(options){ let num = this.data.num; wx.getStorage({ key: 'orderList', success: function(res){ // success console.log('已选美食',res.data) }, fail: function() { // fail }, complete: function() { // complete } }) var orderList = wx.getStorageSync('orderList'); var list=orderList.list; //console.log(list) //object 转 array var order = JSON.parse(options.order); var t_order = []; var t_total = 0; for(var k in order){ if(order[k].num > 0){ t_order.push(order[k]); t_total = t_total + order[k].cost*order[k].num; //计算总价格 } } t_total=order.total; this.setData({ total: t_total, orderList:list }); console.log('数量list',list) num = list.length; console.log('数量num',num) }, 打印出结果是下图 [图片] [图片] 1、如何得到list的个数 num = list.length;这个得到结果是undefined 2、如何得到list的id,就是这个1,2,3 这个值是上一个页面传过来的选择值,是选择后的值,不是固定1,2,3,list也可能{3:2,5:1,13:2} [图片] 想要得到list数组中的个数,和id num = 3 listid1 = 1 ,listid2 = 2,listid3 = 3, 如果list是{3:2,5:1,13:2};listid1 = 3 ,listid2 = 4,listid3 = 13 大神们帮忙看下
2022-05-12写(e: any)
参数“e”隐式具有“any”类型。这个报错咋修改?[图片]
2022-05-12你这是二维数组,itemList[0]是数组
数组取值?<van-collapse class="margin-top-xs" value="{{ activeNames }}" bind:change="onChange" > <van-collapse-item title="{{ItemList[0].FeeMon}}" value="{{ItemList[0].total}}"> ItemList:[图片] ItemList[0].FeeFeeMon 在wxml中为啥没有数据?在js中打印有数据
2022-05-11https://developers.weixin.qq.com/community/develop/doc/000aee91a98d206bc6dbe722b51801
小程序线上版本和体验版wx.geLocation不一致,线上环境wx.getLocation不一定会每次点击体验版,或者是开发环境的时候都能准确执行定位,但是点击线上环境的就不能执行,wx.getLocation会不定期执行
2022-05-11拿签名的url和按键在的页面url是不是不对应
wx-open-launch-weapp 按钮不显示?首先是已认证的服务号,然后签名验证也通过了,还是不显示,直接抄的官网的代码测试 [图片] [图片] 上代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>test</title> <script type="application/javascript" src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script> <!-- <script type="application/javascript" src="../../js/wexin.js"></script>--> </head> <body> 1234 <wx-open-launch-weapp id="launch-btn" username="gh_7ed2336e6ec5" path="pages/home/index?user=123&action=abc"> <template> <style>.btn { display: flex;align-items: center;width: 500px;height: 500px }</style> <button class="btn">跳转小程序</button> </template> </wx-open-launch-weapp> </body> <script type="application/javascript"> console.log(location.href.split('#')[0]); wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印 appId: '[[${appId}]]', // 必填,公众号的唯一标识 timestamp: '[[${timestamp}]]', // 必填,生成签名的时间戳 nonceStr: '[[${noncestr}]]', // 必填,生成签名的随机串 signature: '[[${sign}]]',// 必填,签名 jsApiList: ['wx-open-subscribe', 'wx-open-launch-app'], // 必填,需要使用的JS接口列表 openTagList: ['wx-open-subscribe', 'wx-open-launch-app'] // 可选,需要使用的开放标签列表,例如['wx-open-launch-app'] }); wx.ready(function () { console.log("初始化完成"); // config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中 }); wx.error(function (res) { console.log("初始化错误:", res); // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名 }); var btn = document.getElementById('launch-btn'); btn.addEventListener('launch', function (e) { console.log('success'); }); btn.addEventListener('error', function (e) { console.log('fail', e.detail); }); </script> </html>
2022-05-11https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html
请问使用腾讯微搭开发H5页面如何使用jssdk?请问使用腾讯微搭开发H5页面如何使用jssdk?
2022-05-11