我需要得到URI爲,要更改URI到JSON
list=Test&data=%7B%22email%22%3A%22example%40gmail.com%22%2C%22name%22%3A%22example%22%7D&api_user=username&api_key=password
那麼這將是JSON格式?
任何幫助將不勝感激。 謝謝。
我需要得到URI爲,要更改URI到JSON
list=Test&data=%7B%22email%22%3A%22example%40gmail.com%22%2C%22name%22%3A%22example%22%7D&api_user=username&api_key=password
那麼這將是JSON格式?
任何幫助將不勝感激。 謝謝。
這樣的:
{
list:"Test",
data:%7B%22email%22%3A%22example%40gmail.com%22%2C%22name%22%3A%22example%22%7D,
api_user:"username",
api_key:"password"
}
領域的 '數據' 也是一個字符串
這是行不通的。 – yk2
原始數據串=%7B%22email%22%3A%22example%40gmail.com%22%2C%22name%22%3A%22example%22%7D is data = {「email」:「example @ gmail .COM」, 「名」: 「例如」}。那麼data = {「email」:「[email protected]」,「name」:「example」}的json格式是什麼? – yk2
{list:「Test」,data:{「email」:「[email protected]」,「name」:「example」},api_user:「username」,api_key:「password」}這是否正常工作? –
基於您的評論
我想改變數據= { 「電子郵件」:「例如@ gmail.com「,」name「:」example「}轉換爲json格式
我想要:
{
"list": "Test",
"data": {
"email": "[email protected]",
"name": "example"
},
"api_user": "username",
"api_key": "password"
}
你要轉換的'數據=%7B%22email%22%3A%22example%40gmail.com%22%2C%22name%22%3A%22example%22%7D'成'{「電子郵件「:」[email protected]「,」name「:」example「}' –
那麼數據在哪裏? 「data」:{「email」:「[email protected]」,「name」:「example」}是否正確? – yk2
對不起,但我不明白你的問題。 –