微信小程序 请求返回:data format error hint


看文章 扫一扫 领红包哦

在发送模板消息时返回:47001 data format error hint 错误

原因一般是post请求的Json数据格式不对,可以用http://www.bejson.com校验一下。

另外我用的小程序自带的请求测试的,把 

header: {
        'content-type': 'application/json'
      },

这里改成默认的json,或者不写就请求成功了,

之前因为其他需求写成了:

header: {
            "Content-Type": "application/x-www-form-urlencoded"
          },
从而导致报错,Mark一下。


猜你喜欢

转载自blog.csdn.net/UFO00001/article/details/77885589