标签: php json codeigniter
当我将以下内容作为json回复时
http://test.com
这会转换为
http:\/\/test.com
有/转换为/\的地方。为什么会发生这种情况?我怎样才能给出正确答案。
/
/\
请帮忙
答案 0 :(得分:0)
向我看,好像网址已被编码。您可以使用以下命令对其进行解码
var url = "http:\/\/test.com" var decoded_url = decodeURIComponent(url);