我有这样的JSON:
{"message":"[{\"file_name\":\"1464312906_84174_upload.jpg\",\"file_url\":\"uploads\\/tmp\\/1464312906_84174_upload.jpg\"}]","code":200}
如何获取字符串" 1464312906_84174_upload.jpg"通过JSON Expression?
答案 0 :(得分:0)
message
似乎是一个JSON编码的数组。所以解析它然后访问你想要的属性。
JSON.parse(data.message)[0].file_name
将data
替换为包含您在问题中显示的对象的变量。