没代码的话,联系之前开发者.或者重做吧
小程序商城停滞2年没有使用,商城入口在哪里找不到了?小程序商城停滞2年没有使用,在次审核通过过后,进入显示商城空白页面求专业技术给予协助?佣金可议,13795366726
2024-10-22https://developers.weixin.qq.com/miniprogram/dev/api/network/download/wx.downloadFile.html 修改超时时候后试试 [图片]
wx.downloadFile超时问题?[图片] 是否跟云服务器网络有关呢?
2024-10-21无法下载
开发工具?朋友帮我做了一个小程序,但是我没那个代码,请问我怎么做才能在我的开发者工具上显示这个小程序的代码?求大神帮助
2024-10-21联系网页开发者处理,看着像是h5那边有页面跳转逻辑
web-view?[图片]invokeAppService navigateTo {url: "/pages/index/index?url=https%3A%2F%2Fhuban.gengmax…gin.php%3Fid%3Dxigua_hb%26ac%3Dmy%26needlogin%3D1"}url: "/pages/index/index?url=https%3A%2F%2Fhuban.gengmaxian.com%2Fplugin.php%3Fid%3Dxigua_hb%26ac%3Dmy%26needlogin%3D1"__proto__: Object 只有首页点击有反应其他按钮点击都没反应,请问这个问题如何解决 谢谢!
2024-10-18断点调试,console.log(res) 没看到你获取wehicles部分,确保异步执行顺序
想实现一个动态样式,让文字颜色改变?实现效果:当点击变红按钮弹窗,点击确定后,如果数据库有redden这个字段,就让文字变成红色,如果没有就不变。现在写的代码是,文字颜色没有改变,是什么问题? wxml代码: <view class="left" style="color:{{color}};" > <view class="top-group"> <view class="top" wx:if="{{wehicle.istoppinged}}">顶</view> <view class="start-time">出发:{{wehicle.day}} {{wehicle.times}}</view> </view> <view class="distance-group"> <view class="distance">{{wehicle.startPoint}}</view> <view class="distance">→</view> <view class="distance">{{wehicle.goal}}</view> <view class="distance" wx:if="{{wehicle.carpool == '我要找人' || wehicle.carpool == '我要找货'}}"> ({{wehicle.pass}})</view> </view> <view class="car">车型:{{wehicle.car}}</view> <view class="content">备注:{{wehicle.content}}</view> <view class="end-time">发布时间:{{util.timeFormat(wehicle.create_time)}}</view> </view> js代码: // 变红点击确定 async confirmRedden(e) { const that = this; const wehicles = that.data.wehicles; const redindex = that.data.redindex; const wehicle = wehicles[redindex]; const id = wehicle._id; const ReddenStartTime = new Date().getTime(); const ReddenEndTime = that.data.codered; wx.showLoading({ title:"正在变红中..." }) await db.collection("wehicle").doc(id).update({ data:{ redden:{ ReddenStartTime:ReddenStartTime, ReddenEndTime:ReddenEndTime } } }).then(res => { if(!wehicle.redden){ wehicle.redden = (ReddenEndTime) }else{ wehicle.redden.push(ReddenEndTime) } wehicle.isreddened = true; wehicles[redindex] = wehicle; if(wehicle.redden){ wx.hideLoading; wx.showToast({ title:'恭喜!变红成功!' }) setTimeout(function(){ that.setData({ show_red: false, color:'red', // 改变文字颜色为红色 wehicles:wehicles, }) },800) }else{ wx.showToast({ title:"变红失败!请重新变红!" }) that.setData({ color:'', }) } }) },
2024-10-18检查蓝牙设备特性和权限 确认你要开启通知的蓝牙特征(characteristic)是否支持通知功能。可以检查蓝牙设备的文档或者使用蓝牙调试工具来确认这一点。确保小程序在使用蓝牙功能时已经获得了必要的权限。在小程序的[代码]app.json[代码]文件中检查是否已经正确配置了蓝牙权限: { "permission": { "scope.userLocation": { "desc": "你的位置信息将用于蓝牙设备连接" }, "scope.bluetooth": { "desc": "蓝牙功能权限申请" } } }
蓝牙建立连接后 开启notifyBLECharacteristicValueChange不会有回调?蓝牙建立连接后 开启notifyBLECharacteristicValueChange不会进入成功或失败的回调,并且如果开启notifyBLECharacteristicValueChange后 固定30s后蓝牙会自动断开连接 每次测试都会出现这个问题,如果不开启则不会断开连接,连接改变的监听错误码还是0
2024-10-17https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html [图片]
在小程序 webview跳转一个html页面 需要从html页面返回小程序页面?[图片][图片]
2024-10-17调用接口,返回需要图片,配置上就行了 Page({ data: { shareImageUrl: '', }, onLoad() { // 在页面加载时调用接口获取图片地址 this.fetchShareImage(); }, fetchShareImage() { // 模拟接口调用,实际中应替换为真实的接口请求 wx.request({ url: 'https://your-api-url/getShareImage', success: (res) => { if (res.statusCode === 200) { this.setData({ shareImageUrl: res.data.imageUrl, }); } }, fail: (err) => { console.error('获取分享图片失败', err); }, }); }, onShareAppMessage() { return { title: '分享标题', imageUrl: this.data.shareImageUrl, }; }, });
小程序分享后的缩略图怎么自定义?[图片]
2024-10-17[图片] 打印失败结果,再逐步排查
小程序无法打开APPhttps://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/launchApp.html App从1069场景拉起体验版/开发版小程序,按照官方文档在小程序页面拉起app,无法回到APP中。 <button class="sure_return_btn" open-type="launchApp" app-parameter="{{paySuccess}}" binderror="launchAppError">返回APP</button>
2024-10-17谢邀,没搞过小游戏
新版开发者工具,试玩的调试模式关不掉,代码依赖关联打不开https://developers.weixin.qq.com/minigame/dev/guide/open-ability/playable/api/wx.setEnableDebug.html RC 1.06.2409131版本制作新的试玩,第一次预览试玩时,调试模式是关闭的,之后开启过一次调试模式,预览试玩调试模式正常开启,然后再把enableDebug改回false,预览试玩调试模式就一直存在了,无论重新打包或重新导入工程也一样关不掉。 另外,这个版本的开发者工具还发现代码依赖分析打不开 [图片]
2024-10-16