我正在使用「jQuery Data Link Plugin」。它正在從文本框中收集信息並返回對象。將JSON對象轉換爲字符串問題
我想使用「JSON.stringify(obj)」將對象轉換爲字符串。使用
下面的函數:
function formatObject(obj){
return JSON.stringify(obj).replace(/,/g,'test').replace('{','{\n ').replace('}','\n}')
}
It returns the object value in this format:
{
"name":"name"test"country":"country"test"age":"22"
}
我必須把此對象插入此像一個URL,(例如:「http://test.com/search?name=name & &國家=測試& & age = 22「)
如何將josn對象轉換爲字符串url?
我試了幾個Google搜索找到的答案,很不幸沒有按預期得到。
謝謝。
其實它並不需要我試圖用其他「測試」字符替換「」。 – mushfiq 2010-11-16 18:37:08