0

我得到了这个人。他将字符串解码为可读字符串。

decodeURIComponent("Invalid Ticker Name \u0027t\u0027 at line: 3")
"Invalid Ticker Name 't' at line: 3"

现在看看这个。它告诉我们这个字符串(数组项)的来源实际上是一个字符串。

typeof decodeURIComponent(errorsArr[i])
"string"

但是当我尝试解码数组项时,它就不起作用了。

decodeURIComponent(errorsArr[i])
"Invalid Ticker Name \u0027t\u0027 at line: 3"

该怎么办?

4

2 回答 2

1

我知道它是什么。您的字符串中有一个文字\u0027。您可以在浏览器中验证此行为:

javascript:alert("\u0027");alert("\\u0027");

当您将其输入为:

Invalid Ticker Name \u0027t\u0027 at line: 3

它正在替换 unicode 字符。为什么不能用%27

于 2012-08-07T20:04:29.290 回答
1

问题已解决。

正如代码中所写

// If the document was sent as 'application/javascript' or
// 'text/javascript', then the browser wraps the text in a <pre>
// tag and performs html encoding on the contents.  In this case,
// we need to pull the original text content from the text node's
// nodeValue property to retrieve the unmangled content.
// Note that IE6 only understands text/html

我已经开始将文件作为 html/text 提供,这解决了问题。

于 2012-08-08T15:49:23.953 回答