- 微信支付调用JSAPI 统一下单接口,返回的是html代码?
接口:https://api.mch.weixin.qq.com/pay/unifiedorder 微信支付签名:EFD477E4B13CA17370FD906D73B486E9 调用的接口返回结果:StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.StreamContent, Headers: { Connection: keep-alive Keep-Alive: timeout=8 X-Content-Type-Options: nosniff Request-ID: 08E5D4D5B20610E20318ECB3C0552090EC1428A0A903-270283348 Request-ID: 08E5D4D5B20610C50318F3D28C5820C7AD07289CDF04-0 Cache-Control: must-revalidate, no-cache Date: Tue, 28 May 2024 05:23:49 GMT Server: nginx Content-Length: 126 Content-Type: text/plain } 这个是什么原因造成的呢
05-28 - 用uniapp开发的小程序,使用uni.uploadFile上传图片,在小程序正式版没响应,为啥?
我们用uniapp开发了一个小程序,后端是c#接收提供上传功能,在小程序体验版可以正常上传图片,在正式环境的小程序没有响应,感觉是上传接口根本没有调用起来,因为接口里面的日志没写下来。代码如下,麻烦给看看是小程序设置问题还是说C#的接口问题呢? 另外说一下,目前发布的正式版本在苹果手机可以正常上传图片,在安卓手机不行。 隐私政策和uploadfile合法域名都配置好了的。 export const uploadFileItem = async function (path) { return new Promise((resolve) => { uni.uploadFile({ url: getApp().globalData.uploadFileUrl, // 仅为示例,非真实的接口地址 filePath: path, name: 'uploadfile_ant', formData: { 'uploadfile_ant': path }, success: (uploadFileRes) => { resolve(uploadFileRes.data) } }); }) } C# [图片][图片]
03-28