轉換NSString
適當的JSON格式..轉換的NSString適當的JSON格式
NSString *input_json = [NSString stringWithFormat:@"{\"id\":\"%@\",\"seconds\":\"%d\",\"buttons\": \"%@\"}", reco_id, interactionTime, json_Buttons];
這裏json_Button
在從NSDictionary的轉換JSON格式..
我input_json結果是:
{"id":"119","seconds":"10","buttons": "{ "update" : "2", "scan" : "4" }"}
它的格式不正確。按鍵包含「{}」我想刪除這些引號。
預期的結果是:
{ "id": "119", "seconds": "10", "buttons": { "update": "2", "scan": "4" } }
嗨rmaddy ..感謝您的回覆.. –
嗨rmaddy得到有效的JSON ..但我的服務器不接受...您的建議給出了這樣的結果.. JSON:{ 「ID」:「119」 , 「seconds」:10, 「buttons」:「{\ n \」update \「:\」2 \「,\ n \」scan \「:\」4 \「\ n}」 }服務器期望,「按鈕」:{「更新」:「2」,「掃描」:「4」}像這樣...意味着按鈕鍵值不應該在「」..你能幫我嗎.. –
這是一個完全不同的問題。你應該在這個問題上發佈一個新問題。一定要包括相關的細節 – rmaddy