我試圖執行與綁定到它JSON對象GET requst,我該如何生成的JSON對象發送JSON對象的GET請求迅速在Alamofire
let jsonObject: [String: AnyObject] = [
"ean_code": [
"type": "match",
"value": "16743799"
]
]
,然後我執行請求
這樣
Alamofire.request(.GET,Constant.WebClient.WS_URL + "/product?filters="+String(jsonObject),parameters:parameters)
但是這給了我一個錯誤,是canot網址綁定無效字符
,所以我編碼從這個
let request = String(jsonObject).stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLPasswordAllowedCharacterSet())!
的URL,這將編碼的URL,但我又是這會給我下面的錯誤
Request failed with error: Error Domain=NSCocoaErrorDomain Code=3840 "Invalid value around character 0." UserInfo={NSDebugDescription=Invalid value around character 0.}
所以我的問題是我怎麼可以綁定一個JSON對象來獲取網址?
是對JSON總是在變化? – hariszaman