json数据解析 开头有个小括号.怎么办
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json数据解析 开头有个小括号.怎么办相关的知识,希望对你有一定的参考价值。
<?php$data= "("msg":"00su4e","I":"http.jpg","success":true,"message":"\\u6210\\u529f")";
$data = substr($data,1); //去除(
$data = explode(")",$data)[0]; // 用explode() 函数把字符串打散为数组 取array[0] 即可
获取到得json 有小括号的话 ,想办法去除掉之后 再 json_decode 就可以了
如何从 Swift 3.1 中的 API 创建解析数据,API 以括号开头和结尾
【中文标题】如何从 Swift 3.1 中的 API 创建解析数据,API 以括号开头和结尾【英文标题】:How to create parse data from an API in Swift 3.1 with the API starting and ending with Parentheses 【发布时间】:2017-02-26 02:43:55 【问题描述】:我正在尝试从 API 解析数据。
我可以打印 JSON 列表,但我不能使用其中的任何数据,因为它有这种奇怪的风格:
(
name = "George George";
)
我目前正在使用它来解析 Swift 3.1 中的数据:
let task = URLSession.shared.dataTask(with: url) (data, response, error) in
if error != nil
print(error!)
else
if let urlContent = data
do
let jsonResult = try JSONSerialization.jsonObject(with: urlContent, options: JSONSerialization.ReadingOptions.mutableContainers) as AnyObject
print(jsonResult)
print(jsonResult["name"] as AnyObject)
catch
print("JSON Processing Failed")
task.resume()
print(jsonResult["name"] as AnyObject)
应该返回名称,但它失败了
解析名称需要做什么?
【问题讨论】:
Correctly Parsing JSON in Swift 3的可能重复 @Sneak Nop.. 你提到的问题与这种情况无关 这个怎么样? ***.com/questions/38155436/json-parsing-in-swift-3***.com/questions/39939143/…***.com/questions/39458836/parsing-json-using-swift-3***.com/questions/39609726/swift-3-json-parsing***.com/questions/40378048/…***.com/questions/39759998/…***.com/questions/39423367/… @Sneak 问题是 API 的结构而不是调用 @Sneak 非常感谢你 【参考方案1】:我想通了。如果 API 响应如下所示:
(
name = "George George";
)
这意味着 API 响应是错误的,完美的方法是修复来自后端的响应,而不是尝试从错误的 API 响应中解析数据。
没有理由浪费时间尝试从错误的 API 响应中解析数据。
【讨论】:
以上是关于json数据解析 开头有个小括号.怎么办的主要内容,如果未能解决你的问题,请参考以下文章