- 小程序使用地图组件需要购买吗?
如果只是使用地图标注和地图导航功能,不需要高级个性化功能,也要购买改组件才能使用吗?
07-23 - 调用getcheckin_monthdata获取打卡月报数据,报错"errcode":48002?
String urlMoth="https://qyapi.weixin.qq.com/cgi-bin/checkin/getcheckin_monthdata?access_token="+access_token+""; JSONObject bodyMoth = new JSONObject(); bodyMoth.set("starttime", timestamp2); bodyMoth.set("endtime", timestamp1); bodyMoth.set("useridlist", resultArray); String postContactsMoth = HttpUtil.post(urlMoth,bodyMoth); System.out.println("postContactsMoth响应: {}"+postContactsMoth);
06-18 - 云函数调用报SyntaxError: Unexpected token '(' 为什么是“(”?
// 云函数入口文件 const cloud = require('wx-server-sdk') const mysql = require('mysql2/promise') cloud.init() // 使用当前云环境 // 云函数入口函数 exports.main = async (event, context) => { const wxContext=cloud.getWXContext() try{ const connection =await mysql.createConnection({ host:"", database:"xxs", user:"root", password:"", port:"3306" }) const[rows,fields]=await connection.execute("INSERT INTO integral_list (open_id,create_time) VALUES('"+ wxContext.OPENID +"' ,NOW() ) ") const[rows1,fields1]=await connection.execute("UPDATE sys_customer SET integral = integral+1 WHERE open_id='"+ wxContext.OPENID +"' ") connection.end(); return rows; } catch(err){ console.log("连接错误!",err) return err; } } 这是代码,调用报错,实在找不到语法哪里有错误 WAServiceMainContext.js?t=wechat&s=1692146197700&v=2.33.0:1 Error: cloud.callFunction:fail Error: errCode: -504002 functions execute fail | errMsg: Runtime.UserCodeSyntaxError: SyntaxError: Unexpected token '(' at Object.module.exports.load (:35115/var/runtime/node12/UserFunction.js:32) at Runtime.handleOnce (:35115/var/runtime/node12/Runtime.engine.js:99) at Timeout._onTimeout (:35115/var/runtime/node12/Runtime.engine.js:56) at listOnTimeout (:35115/appservice/internal/timers.js:549) at processTimers (:35115/appservice/internal/timers.js:492) (callId: 1692165600795-0.494791146595986) (trace: 14:0:0 start->14:0:1 system error (Error: errCode: -504002 functions execute fail | errMsg: Runtime.UserCodeSyntaxError: SyntaxError: Unexpected token '(' at Object.module.exports.load (:35115/var/runtime/node12/UserFunction.js:32) at Runtime.handleOnce (:35115/var/runtime/node12/Runtime.engine.js:99) at Timeout._onTimeout (:35115/var/runtime/node12/Runtime.engine.js:56) at listOnTimeout (:35115/appservice/internal/timers.js:549) at processTimers (:35115/appservice/internal/timers.js:492)), abort) at O (<anonymous>:1:163208) at <anonymous>:1:195232(env: Windows,mp,1.06.2306020; lib: 2.33.0)
2023-08-16 - 微信小程序可以获取手机的MAC地址吗?
现在公司的需求就是获取登陆手机的mac地址,确保这个账号不在其他手机上面登陆,保证唯一性,有办法我可以实现吗
2023-05-10 - cloudfunctionRoot创建不了云开发的目录?
我在 project.config.json中配置了"cloudfunctionRoot": "cloud/",然后重新编译没有生成文件
2023-02-14 - 台湾地区不可以访问小程序吗?
我们公司台湾的用户说打不开小程序,是台湾地区不可以提访问吗?
2022-04-08 - 小程序用腾讯视频插件播放视频,要消耗csdn流量吗 ?
如果我在小程序里面用腾讯视频插件,给用户观看视频。用户每点击一次,会消耗csdn流量吗?还是消耗别的地方的流量?还是只消耗用户的流量
2022-02-22 - 小程序里面放视频给客户看,流量是怎么计算的?
我把视频上传到云储存里面,然后小程序放链接给客户看,请问这个流量是怎么算的?是扣除的哪里的流量?
2022-02-16 - 退款一直报签名错误?
<xml> <nonce_str>88630f9a9e9c4b33b064d0afe42e03c3</nonce_str> <out_trade_no>33513711643181625117</out_trade_no> <out_refund_no>33513711643181625117</out_refund_no> <appid>wxfc5c98bc94248dd4</appid> <refund_fee>100</refund_fee> <total_fee>100</total_fee> <sign>3CEB59A0D616DC44D7BA6EB211A41350</sign> <mch_id>1800008281</mch_id> <sub_mch_id>1619744204</sub_mch_id> </xml> https://api.mch.weixin.qq.com/secapi/pay/refund 服务商模式调用的这个退款接口,一直报签名错误
2022-01-27 - https://api.mch.weixin.qq.com/secapi/pay/refund接口?
这个退款接口不能用了吗?用这个提示订单号不存在,可是我已经支付成功了
2022-01-26