我模拟器可以正常登录,真机调试登录不了,也不报错,代码调试请求不了后台,后来发现小程序端根域名写的是 http://localhost:8181 改成 http://你电脑的IP:8181 就好了
微信小程序可以在开发者工具中正常登录,但真机调试时手机无法登录进去- 当前 Bug 的表现(可附上截图)[图片] - 预期表现 可以正常登录 - 复现路径 - 提供一个最简复现 Demo
2023-04-25[图片]
map的controls为啥不显示呢?map组件的controls无法显示 使用cover-image虽然显示,但是不如map层级高 基础库2.12.2 ,下面是部分代码 <template> <view class="addrContent"> <map style="width: 100%;" :style="'height:' + windowHeight * 2 + 'rpx'" :latitude="latitude" :longitude="longitude" :markers="covers" :polyline="polyline" :controls="controls" > <cover-view class="outTickrt"> <cover-image :src="$url + '/4-1.png'" class="E-ticket" @click="buyTicket" ></cover-image> </cover-view> </map> </view> </template> controls: [ { id: 1, iconPath: "../../static/icon/4-1.png", position: { top: 50, width: 100, left: 10, height: 100, }, clickable: true, }, ],
2022-06-21