0
轉義我正嘗試在javascript中應用一個簡單的轉義過程< - > php通信。我不工作......我不知道爲什麼。用JSON.parse()
這裏是一些測試代碼我寫道:
<head>
<meta charset='utf-8'>
<title>Test</title>
</head>
<body>
<script>
JSON.parse('[{"id":"43","english":"ar\"m","korean":"\ud314","date":"49 minute(s) ago."}]');
</script>
</body>
</html>
轉義字符是單詞手臂內使用雙引號。打開頁面時返回 錯誤:
VM84:1 Uncaught SyntaxError: Unexpected token m in JSON at position 26
at JSON.parse (<anonymous>)
at test.html:11
(anonymous) @ test.html:11
目前尚不清楚這個實驗的重點。如果你在使用服務器發送的JSON時遇到問題,那麼問題就在那裏。 – Pointy