我使用从远程获取 json 数据并使用 SwiftyJson 快速使用 JSON(data),现在问题是当我这样做时:
println(jsonObj.object)
我明白了:
{
id = 3642;
name = "Test";
"front_image" = "/image/dasad.jpg";
"is_new" = 0;
price = "100";
}
我在这里有问题,因为这个对象中的一些键带有双引号,有些没有,所以我无法获得价值jsonObj.objectForKey("front_image")!.string
当我从浏览器看到 json url 时,这就是我得到的:
{
"id" = 3642;
"name" = "Test";
"front_image" = "/image/dasad.jpg";
"is_new" = 0;
"price" = "100";
}
这是 SwiftyJson 错误,还是?什么是解决方案?