- networkTimeout request设置3000无效?
在app.json里设置 "networkTimeout": { "request": 3000 } 无效 [图片]
2020-10-23 - 为什么base64和usingcomponents里的路径都有问题。。。。。。。。。。
https://developers.weixin.qq.com/miniprogram/dev/extended/weui/slideview.html 我这么用他才不报错 [图片] 但是那个base64我是真弄不出来 var base64 = require("../images/base64"); [图片] emmm,小白不会呀
2020-07-21 - 为什么我的animation没起作用?
<image wx:if="{{animationMoved == 0}}" class="schedule" src="mine/images/plus.png" style="position:fixed;left:{{plusLocation.x}}px;top:{{plusLocation.y}}px;"></image> <image wx:else class="schedule1" animation="{{animation}}" src="mine/images/plus1.png" style="position:fixed;left:{{plusLocation.x}}px;top:{{plusLocation.y}}px;"></image>为什么我这里的animation没起作用
2020-04-04 - 问,微信开发者工具中的x轴和y轴数值代表什么?rpx还是px还是什么别的东西,因为我要用坐标算距离
var L = 250 / 750 * wx.getSystemInfoSync().screenWidth; var R = 500 / 750 * wx.getSystemInfoSync().screenWidth; var T = 550 / 1500 * wx.getSystemInfoSync().screenHeight; var B = 750 / 1500 * wx.getSystemInfoSync().screenHeight; var xL = x; var xR = xL + 160 / 750 * wx.getSystemInfoSync().screenWidth; var yT = y; var yB = yT + 90 / 1500 * wx.getSystemInfoSync().screenHeight; // console.log(xL,xR, yT,yB); // console.log(L, R, T, B); if (xL > L && xR < R && yT > T && yB < B) { return 1; } else { return 0; } 这里我的机型变换到xr时和6时他的y轴就出现很大问题,x轴还好
2020-04-04 - 测试号申请了地址却不能使用?
我用测试号申请了地址却不能用,只能用我的开发者apple ID
2020-03-18