- 为什么设置闪光灯之后还是拍的黑图片?
<camera binderror="handleCameraError" device-position="{{devicePosition}}" flash="{{flashmode}}" style="width: 100%; height: 80vh;"> </camera> 设置为on后,闪光灯闪了,但是图片还是黑的,这是啥原因?
2020-11-24 - 小程序页面报500内部错?
[图片] 在查看network时,看到内部页面报500错,app.json已经添加了,然后文件本身也存在的。 Error: ENOENT: no such file or directory, open 'D:/DEV_2020/xxx_202009/小程序/pages/goods/cate_meituan/cate
2020-11-22 - 小程序分享前能不能检测数据状态?
小程序分享前能否根据数据状态进行提示、拦截,终止分享呢?谢谢!!
2020-10-26 - 昨天添加的用户,今天通过开发工具远程调试,说没有体验权限
在后台添加了体验用户后,发送远程调试二维码,对方报错“暂无体验权限”
2018-07-17 - 急!调用wx.authorize 返回12007错误
{errMsg: "authorize:fail scope unauthorized", errCode: "-12007"} errCode:"-12007" errMsg:"authorize:fail scope unauthorized" __proto__:Object [图片] 用户机型:苹果7plus [图片] 代码部分: wx.login({ success: function () { wx.getUserInfo({ withCredentials: true, success: function (res) { //此处为获取微信信息后的业务方法 that.globalData.userInfo = res.userInfo; typeof cb == "function" && cb(that.globalData.userInfo) }, fail: function () { //获取用户信息失败后。请跳转授权页面 wx.showModal({ title: '警告', content: '尚未进行授权,请点击确定跳转到授权页面进行授权。', success: function (res) { if (res.confirm) { console.log('用户点击确定') wx.navigateTo({ url: '/pages/tologin/tologin', }) } },fail(e){ console.log("用户授权失败") console.log(e); } }) } }) } });
2018-07-17 - 手机及远程调试时 点 属性引用失效?急急急谢谢!!!
console.log('m1111111111111') console.log(response.data) console.log(response.data.openid); console.log(response.data.remote.openid); var openId = response.data.openid; var openId2 = response.data.remote.openid; var sessionKey = response.data.sessionKey; // TODO 缓存 openId console.log('m222222222222222222') getApp().globalData.openid = openId; getApp().globalData.sessionKey = sessionKey; 电脑端完全正常,远程调试时报错 手机型号: [图片] 远程调试: [图片] [图片]
2018-07-14 - require是不是有目录层数限制
var svr = require('../../../../../utils/server'); 这里的目录怎么变化都报错: thirdScriptError sdk uncaught third Error can't find module : ../../../../../utils/server Error: can't find module : ../../../../../utils/server
2018-07-14 - 没有插件开发选项嘛
创建项目时没看到创建插件选项。
2018-03-16 - qqmapsdk.calculateDistance计算距离错误
qqmapsdk.calculateDistance 为啥会返回两个数值一个是0啊。。。
2018-02-08 - 小程序不能直接调用地图服务
var BASE_URL = 'http://apis.map.qq.com/ws/'; var URL_SEARCH = BASE_URL + 'place/v1/search'; var URL_SUGGESTION = BASE_URL + 'place/v1/suggestion'; var URL_GET_GEOCODER = BASE_URL + 'geocoder/v1/'; var URL_CITY_LIST = BASE_URL + 'district/v1/list'; var URL_AREA_LIST = BASE_URL + 'district/v1/getchildren'; var URL_DISTANCE = BASE_URL + 'distance/v1/'; 因为小程序只能支持https地址配置,所以http地址报404错误,无法使用。
2018-01-17