- 为什么我的所有微信小程序的游戏都看不了广告?
我在玩微信小游戏时看不了广告,别人都可以看。 后来有一个朋友他也看不了,和我情况一样,他截图给了那个‘投诉与反馈’结果他第二天就可以看了,我也同样做了可是依旧看不了。
2019-08-01 - 有没有API可以获取小程序是否添加到【我的小程序】?
有没有API可以获取小程序是否添加到【我的小程序】,想要在小程序内检测当前小程序是否在【我的小程序】中
2020-12-03 - 小程序是否有“添加到我的小程序”这个功能的api
- 需求的场景描述(希望解决的问题) 微信的6.7.3版本新增了把小程序“添加到我的小程序”这个功能,那么这项功能是否可以由用户在小程序内点击实现,我在小程序的api文档那里没有看到有这个功能
2018-11-19 - 一个小程序添加的直播间数量有限制吗?
一个小程序添加的直播间数量有限制吗?只看到同时五十场直播,举例:每天添加五十个直播间,第三天回放列表是不是150个直播间都能看?回放能看多久?
2020-06-11 - 小程序webview跨域问题如何解决?
在本地测试,后台已经设置允许跨域,浏览器和开发者工具微信公众号模式访问localhost不会存在跨域问题,但是在小程序webview中就会存在跨域问题,请问如何解决?
2019-10-17 - 网页授权出现跨域问题,域名已经在公众平台配置
XMLHttpRequest cannot load https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx1b63f19b557665ec&redirect_uri=https%3A%2F%2Factivitygray.motivape.cn%2F%23%2Ffriends_index%3Fopenid%3D%26channelType%3D0&response_type=code&scope=snsapi_userinfo&state=?openid=&channelType=0#wechat_redirect. Redirect from 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx1b63f19b557665ec&redirect_uri=https%3A%2F%2Factivitygray.motivape.cn%2F%23%2Ffriends_index%3Fopenid%3D%26channelType%3D0&response_type=code&scope=snsapi_userinfo&state=?openid=&channelType=0#wechat_redirect' to 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx1b63f19b557665ec&redirect_uri=https%3A%2F%2Factivitygray.motivape.cn%2F%23%2Ffriends_index%3Fopenid%3D%26channelType%3D0&response_type=code&scope=snsapi_userinfo&state=?openid=&channelType=0&connect_redirect=1#wechat_redirect' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://activitygray.motivape.cn' is therefore not allowed access. [图片]
2019-11-08 - 云开发| -501001 resource system error 代表了什么?
编写了一个需要频繁查询数据库的云函数(一次运行大约查询读写 各5000次,运行时间30秒),遇到如下问题:在本地调试,频繁出现-501001错误;函数放在云端运行,一切正常。错误如下: -501001 resource system error | errMsg: collection.get:fail ESOCKETTIMEDOUT 请问这个错误是因为频繁查询导致本地调试器断线嘛?还是说在代码实现方面有什么效率瓶颈问题? 附上代码: for ( let j=0; j<data.length; j++){ var openid = data[j]._id var history = data[j].read_history const tasks = [] console.log (openid) //处理这个文章id数组 for( let k=0; k<history.length; k++ ){ let self = history[k] let others = [] history.forEach(element=>{ if ( element !== self){ others.push(element) } }) if ( others.length === 0 ){ continue } let relate = {} let isexist = await db.collection(ARTICLES_DYNAMIC_COLL).where({ _id: self }).get() //新添加 if ( isexist.data.length === 0){ others.forEach( element=>{ let str = `${element}` relate[str] = INC_ONE }) res = await db.collection(ARTICLES_DYNAMIC_COLL).add({ data: { _id:self, read_num: INC_ONE, relate, } }) }else if ( isexist.data.length === 1) { others.forEach( element=>{ let str = `${element}` relate[str] = _.inc(INC_ONE) }) res = db.collection(ARTICLES_DYNAMIC_COLL).doc(self).update({ data: { read_num: _.inc(INC_ONE), relate, } }) tasks.push(res) }
2021-04-12 - #wechat_redirect和vue的hash模式
小程序的#wechat_redirect和vue链接中的#冲突了,有没有解决办法啊???
2018-05-03 - web-view怎么查看console.log?
使用了web-view内嵌了一个vue项目,怎么可以在小程序中console.log?
2019-09-26 - 小程序web-view的src有长度限制吗?
小程序页面中加载关联公众号的页面,想将数据通过src传递,所以想知道src长度方面的限制
2019-10-25