美文网首页
关于fetch以及axios的post请求的参数问题

关于fetch以及axios的post请求的参数问题

作者: 悦者生存 | 来源:发表于2018-04-12 15:06 被阅读22次

    1.第一必须加上请求头

    headers: {

           'Accept': 'application/json',

           'Content-Type': 'application/json',

         },

    2.第二参数要加上JSON.stringify

    return request('/rainxml/services/pageoffice/setDate',{

        method:"POST",

        body:JSON.stringify({username:"zhaohao"}),

        headers: {

            ' Accept': 'application/json',

            'Content-Type': 'application/json',

          }});

    相关文章

      网友评论

          本文标题:关于fetch以及axios的post请求的参数问题

          本文链接:https://www.haomeiwen.com/subject/ulaxkftx.html