避免“在 PHP 或 JS 中
我的编码有问题(我猜)。我的脚本通过 ajax 获取生成 JSON 文件的 php。我认为 JSON 是(在 firebug 中看到)
["“This is a word” This not"]
并且我想删除 “
。有什么方法可以删除它(在 php 或 js 中,没关系)
提前致谢。
I have a problem with the encodification (i guess). My script gets by ajax a php that generates a JSON file. The think that the JSON is (seen in firebug)
["“This is a word” This not"]
And I wanna to remove “
. Is there any way to remove this (in php or js, does not matter)
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 javascript,您可以使用:
对于 php,您可以使用:
For javascript, you can use:
For php, you can use:
只是用 JSON 编码的一个字符串。如果您想删除字符串的该部分(或字符串的 JSON),您可以使用 JSON 创建字符串,然后使用 javascript 函数替换来删除
“
。试试这个:
如果你真的想要 JSON 格式(我对此表示怀疑),你可以将其返回:
is just one string encoded in JSON. If you want to remove that part of the string (or JSON for the string), you could create the string with the JSON and then use the javascript function replace to remove
“
.Try this:
if you actually want it in JSON (which I doubt) you could then turn it back: