无法在philsturgeon REST库codeigniter中将url作为json响应

时间:2015-01-28 13:20:05

标签: php json codeigniter

当我将以下内容作为json回复时

http://test.com 

这会转换为

http:\/\/test.com

/转换为/\的地方。为什么会发生这种情况?我怎样才能给出正确答案。

请帮忙

1 个答案:

答案 0 :(得分:0)

向我看,好像网址已被编码。您可以使用以下命令对其进行解码

var url = "http:\/\/test.com"
var decoded_url = decodeURIComponent(url);