當我打印(JSON)時,我得到這些文件,所以.request可以工作。 但是,當我試圖進入「試驗」鍵(它存在),我得到零Swift:當訪問NSDictionairy時,JSON爲零
我得到
「我在這裏」
「現在,我在這裏」
Alamofire.request(.GET, self.APIBaseUrl , parameters: ["api_key": self.APIkey])
.responseJSON { response in
if let JSON = response.result.value {
print("I am here")
if let str = JSON as? NSDictionary {
print("now , I am here")
if let movieUrlString = str["poster_path"] as? String)! {
print("but now here")
}
EDITED
print(dict)
**dates** = {
maximum = "2015-10-21";
minimum = "2015-09-30";
};
page = 1;
**results** = (
{
adult = 0;
"poster_path" = "/2XegKZ0I4QrvzpEHneigRk6YTB1.jpg";
++(更多結果)
您是否更具體? – Abizern
其TMDB數據庫和結果是: – PoolHallJunkie