使用JSON POST数据时总是失败(正文:原始) [英] Always failed when POST data with json (body: raw)

查看:151
本文介绍了使用JSON POST数据时总是失败(正文:原始)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

将数据发送到服务器时遇到麻烦.我正在与本机& axios版本^ 0.16.2

I'm have trouble when send data to my server. I'm working with react native & axios ver ^0.16.2

let input = {
  'longitude': -6.3922782,
  'latitude': 106.8268856,
  'content': 'uget - uget sampai kaki lemes',
  'pictures': []
}

  axios({
    method: 'POST',
    url,
    headers: {
      'Content-Type': 'application/json',
      'Authorization': this.state.headers.authorization
    },
    data: input
  })                                                                     
  .then((resultAxios) => {
    console.log('hasil axios', resultAxios)
  })

并且状态结果始终为错误500.

and the status result always error 500.

如果我尝试与邮递员发送数据,一切都很好.在邮递员中,我设置

If I try send data with postman, everything is fine. In postman, I set

headers: {
  Authorization: ''',
  Content-Type: application/json
}

body = raw, JSON

如何解决此问题?谢谢:)

How can solve this problem? Thanks :)

推荐答案

我发现axios在处理正文的json时遇到了一些问题 试试这个:

I've found that axios have some problem in the processing of json for body try this:

let input = 'longitude=-6.3922782&latitude=106.8268856&content="uget - uget sampai kaki lemes"&pictures=[]';

  axios({
    method: 'POST',
    url,
    headers: {
      'Content-Type': 'application/json',
      'Authorization': this.state.headers.authorization
    },
    data: input
  })                                                                     
  .then((resultAxios) => {
    console.log('hasil axios', resultAxios)
  })

并且状态结果始终为错误500.

and the status result always error 500.

如果我尝试与邮递员发送数据,一切都很好.在邮递员中,我设置

If I try send data with postman, everything is fine. In postman, I set

headers: {
  Authorization: ''',
  Content-Type: application/json
}

body = raw, JSON

这篇关于使用JSON POST数据时总是失败(正文:原始)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆