记录ajax 设置请求header的Content-Type 为 application/json;charset=utf8

Posted 天道酬勤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录ajax 设置请求header的Content-Type 为 application/json;charset=utf8相关的知识,希望对你有一定的参考价值。

  具体案例如下

 

$.ajax({
          url: context.state.IpccSendIm,
          method: ‘POST‘,
          data: JSON.stringify(val),
          headers:{‘Content-Type‘:‘application/json;charset=utf8‘},
          dataType:"json",
          success: function (data) {
            console.log(data);
            imStore.addChatMsgDemo({
              msg: {
                role: ‘sys‘,
                contentType: ‘text‘,
                content: ‘-----会话结束-----‘,
                showTime: true
              }
            });
          }
    });

  

以上是关于记录ajax 设置请求header的Content-Type 为 application/json;charset=utf8的主要内容,如果未能解决你的问题,请参考以下文章

跨域并设置headers的请求

POSTMAN模拟AJAX请求

如何设置会话的生命周期

header设置跨域问题

ajax响应时长怎样设置?

Laravel —— tips 总结