码迷,mamicode.com
首页 > Web开发 > 详细

Request请求:Failed to execute 'setRequestHeader' on 'XMLHttpRequest': String contains non ISO-8859-1 code point.问题解决

时间:2020-11-25 12:12:02      阅读:10      评论:0      收藏:0      [点我收藏+]

标签:分析   str   文字   token   uri   error   rom   字符串   nta   

一、问题如下:

  1、报错信息:

Uncaught (in promise) TypeError: Failed to execute ‘setRequestHeader‘ on ‘XMLHttpRequest‘: String contains non ISO-8859-1 code point.

  类型错误:未能在“XMLHttpRequest”上执行“setRequestHeader”:字符串包含非ISO-8859-1代码点。

  2、截图如下:

  技术图片

二、问题解决:

  1、问题分析:

  在前端页面发送request请求到后台时,请求头即header中放入了中,所以就会出现编码格式问题。

  要解决问题就要对中文字符进行编码,到后台里再进行解码接收处理。

  2、编码解码:

  以下为vue中对中文进行编码解码的方式:

// 编码
encodeURIComponent(str)
// 解码
decodeURIComponent(str)

  后台进行接收:

//编码
java.net.URLEncoder.encode(token,"UTF-8")
//解码
java.net.URLDecoder.decode(token,"UTF-8")

  

Request请求:Failed to execute 'setRequestHeader' on 'XMLHttpRequest': String contains non ISO-8859-1 code point.问题解决

标签:分析   str   文字   token   uri   error   rom   字符串   nta   

原文地址:https://www.cnblogs.com/guobin-/p/14014548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!