你有政府的接口?
政务微信小程序开发、接入流程?政务微信开发和接入流程是怎么样的呢?
2023-04-03可以用 微信小账本 提交资料 注册
微信小商店和视频号小商店有什么区别,目前微信小商店是不是不可以注册了?不太理解微信小商店和视屏号小商店的区别,还有就是现在开微信小商店为什么会显示我还未注册小商店,该怎么注册小商店?
2023-04-03有大神知道么?
文件上传本地接口可以,上传到服务器就不行我直接用node.js快速启动模板 直接用原本的代码上传图片,只改了上传的url,但不知为什么我上传到本地的接口就可以,上传到服务器的接口就不行。本地和服务器的接口是一模一样的 // 上传图片 wx.uploadFile({ //url: "https://t.xinghuazhong.club/imgs/product100", //本机测试 //url: "http://localhost:8080/student/upLoadPic.action", //正式发布 url: "https://t.xinghuazhong.club/student/upLoadPic.action", filePath: filePath, name: 'pictureFile', success: function(res){ //util.showSuccess('上传图片成功') wx.showModal({ title: '上传文件返回状态', content: '成功', }) console.log(res) res = JSON.parse(res.data) console.log(res) that.setData({ imgUrl: res.data.imgUrl }) }, fail: function(e) { util.showModel('上传图片失败') } }) 上传到服务器时报这个错误: showModal:fail parameter error: parameter.content should be String instead of Undefined;
2018-08-30