个人案例
暂无发表的小程序案例
点击编译之后有响应么?
微信小程序新建项目白屏是怎么回事?[图片] 如图所示,重装了3次了,现在的安装路径也没有中文了,但仍然是白屏,点开微信开发者工具的调试微信开发者工具,发现一些报错不知道是否是这个原因 [图片] 麻烦哪位知道原因的朋友帮忙解决下,谢谢 操作系统是win10家庭中文版,版本号1903
2020-10-20可以打开进程管理看下详细占用情况?[图片]
一使用开发者工具,内存占用就飙了4个多G,风扇呼呼的转?重启会好一会,但是使用一会就会立马内存又飙升, 最高升至15G,开发工具版本已经是预发布版最新版,设置已关闭GPU加速, 基础库版本:[图片] 电脑系统版本:[图片] [图片] [图片] appid: wx49e58b1c78631eed
2020-10-19你好,按钮置灰看上去是因为登录的账号和小程序appid不匹配,麻烦确认下登录态?关闭是指关闭什么?
微信开发者工具无法运行了,按钮都不能用也没法关闭怎么才能关闭?[图片] 稳定版1.03.2009140 macOs
2020-10-19https://developers.weixin.qq.com/community/develop/doc/000c0a0a590490590d0ba0c3d51801?blockType=1 wx.chooseAddress 现在不需要用户授权,可直接使用。
最新版的开发工具在授权拒绝后有bug?Page({ /** * 页面的初始数据 */ data: { }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, /** * 选择地址的wx 小程序原生方法wxwx.chooseAddress * 实际流程: * 1. 获取用户对小程序各类权限 wx.getSetting({}) * scope 的的授权状态 authSetting.scope.address * 2. 授权状态分析 * 2.1 地址已授权(authSetting.scope.address = true),直接调用获取地址的原生方法 * 2.2 地址从未经历过授权(authSetting.scope.address = undefined),直接调用获取地址的原生方法 * 2.3 地址未授权 (authSetting.scope.address = false) * 此时需要让用户自行打开用户授权页面,设置授权状态后,重新获取地址 * */ handleChooseAddress() { wx.getSetting({ success: (result) => { console.log(result); const scopeAddress = result.authSetting["scope.address"]; if(scopeAddress===true || scopeAddress===undefined) { wx.chooseAddress({ success: (result1) => { console.log(result1); }, fail: (err) => { console.log(err); } }); } else { wx.openSetting({ success: (result2) => { wx.chooseAddress({ success: (result3) => { console.log(result3); } }) } }) } }, fail: (err) => { console.log(err); } }); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { } }) index.wxml <view class="cart_delivery_address"> <view class="dilivery_address_btn"> <button type="primary" plain bindtap="handleChooseAddress">选择收货地址</button> </view> </view> <view class="cart_goods_list"> 购物车商品清单 </view> <view class="cart_btm"> 购物车底部 </view> console log writeFile err writeFile:fail no such file or directory http://usr/miniprogramLog/log1 index.js:33 {errMsg: "getSetting:ok", authSetting: {…}}errMsg: "getSetting:ok"authSetting: {scope.address: true, scope.invoice: true, scope.invoiceTitle: true}__proto__: Object index.js:41 {errMsg: "chooseAddress:fail auth deny"} VM350 WAService.js:2 log writeFile err writeFile:fail no such file or directory http://usr/miniprogramLog/log1 index.js:33 {errMsg: "getSetting:ok", authSetting: {…}} index.js:41 {errMsg: "chooseAddress:fail auth deny"} index.js:33 {errMsg: "getSetting:ok", authSetting: {…}} index.js:41 {errMsg: "chooseAddress:fail auth deny"} index.js:33 {errMsg: "getSetting:ok", authSetting: {…}} index.js:33 {errMsg: "getSetting:ok", authSetting: {…}} index.js:41 {errMsg: "chooseAddress:fail auth deny"} index.js:41 {errMsg: "chooseAddress:fail auth deny"} index.js:33 {errMsg: "getSetting:ok", authSetting: {…}} VM350 WAService.js:2 log writeFile err writeFile:fail no such file or directory http://usr/miniprogramLog/log1 index.js:41 {errMsg: "chooseAddress:fail auth deny"} 预期是在用户不授权后,如果二次点击,引导用户重新授权。 实际调试时,点击了清除缓存,console一直打印的是authSetting 有值,而且一直为true 导致无法走到else 不知道要通过什么方式清除掉缓存的authSetting,欢迎各位大佬指正
2020-10-19请问使用的微信账号是测试账号吗,企业微信小程序插件是不支持测试账号的。
“模拟操作”下拉菜单中点击“选择企业” 为什么报错“当前账号不支持”?默认的新建项目,没有关联企业微信的小程序 appid:wx6d90620f2fe12cf2 时间:2020/10/15 17:04 开发者工具版本号:1.03.2009301 调试基础库:2.13.12.13.1 [图片]
2020-10-15切换企业入口见下图。 [图片]
开发工具添加企业微信小程序模式插件,不能切换企业,以及使用wx.qy.login出错开发工具添加企业微信小程序模式插件, 问题一:只能选择一次企业,不能够切换企业。 问题二:使用企业微信小程序模式插件,不同的开发者登录同一开发工具,使用wx.qy.login 获取到的code标识的是一个人,而不是更具登录者身份获取到不同的code
2020-10-15https://developers.weixin.qq.com/community/develop/doc/000c0a0a590490590d0ba0c3d51801?blockType=1 产品策略变更,这3个接口不再需要授权。
微信开发工具的这三个权限为什么一直默认打开 关都关不了?[图片]
2020-09-29是只有success不执行,还是 fail/complete/success 都不执行?
开发者工具更新为最新后,requestPayment函数在模拟器中无法运行success函数1.微信开发者工具更新之后,requestPayment函数在模拟器运行时,不执行success方法 2.同样的代码,原来是可以运行的,最近突然不能运行了,我猜可能是开发者工具更新的原因 3.在手机端可以正常执行
2020-09-23已复现,我们会尽快修复。
开发者工具里调用wx.getClipboardData会执行两次success回调开发者工具里调用wx.getClipboardData会执行两次success回调 真机调试的时候,看着是没有问题的。 [图片]
2020-09-16wx.qy.login 企业微信接口问题在最新nightly修复,可下载尝试使用。https://developers.weixin.qq.com/miniprogram/dev/devtools/nightly.html 稳定版稍后会修复。
Cannot read property 'login' of undefined?[图片] 用这个开发者工具真是醉了,修改代码进行调试不能显示最新的效果,要清空缓存,重启开发工具才行。调 wx.qy.login接口又碰到这问题,难怪小程序发展的不好,坑太多了
2020-09-10