Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个简单的 Web 应用程序,它允许我在textarea元素内编写一些 JSON,然后将其发布到我的服务器。我面临的问题是,当 JSON 到达服务器时,它包含来自textarea. 这是一个问题,因为现在我不能使用 JSON.parse,例如,将其返回到 Javascript 领域。
textarea
我曾考虑过在服务器端从其中删除换行符,但是否有更好的方法可以将其作为 JSON 实际发送?
JSON 会忽略大多数空格,但值除外。
我会说你这样做是正确的。您要么需要在发送之前在客户端用 Javascript 替换它们,要么在服务器端接收后只做一些修改。