2016-08-05 8 views
1

私は以下のコードを使用してサーバーからjsonデータを取得していますが、エラーが返されています。Alamofire returned error

コード: エラードメイン= NSCocoaErrorDomainコード= 3840 "の文字は0の周りに無効な値":ここでは

func getPosts(page : Int, count : Int,completionHandler: (responseObject: ResponseModel) ->()){ 
    let header = ["Content-Type": "application/json"] 
    let responseModel = ResponseModel() 
    var posts = [StoryModel]() 
    var comments = [CommentModel]() 
    var customFields = [CustomFieldModel]() 
    let medium = ImageTypeModel() 
    let high = ImageTypeModel() 
    var postCount = [String]() 
    var categories = [CategoryModel]() 
    manager!.request(.GET, "http://www.anonews.co?json=get_recent_posts", parameters: ["page": page,"count" :count],headers: header) 
     .responseJSON { response in 
      switch response.result { 
      case .Success: 
       if let value = response.result.value { 
        let json = JSON(value) 
        print(json) 
        responseModel.status = json["status"].stringValue 
        responseModel.count = json["count"].intValue 
        responseModel.count_total = json["count_total"].intValue 
        responseModel.pages = json["pages"].intValue 

        for item in json["posts"].arrayValue { 
         let storymodel = StoryModel(); 
         storymodel.comment_count = item["comment_count"].stringValue 
         storymodel.content = item["content"].stringValue 
         storymodel.excerpt = item["excerpt"].stringValue 
         storymodel.id = item["id"].intValue 
         storymodel.imageUrl = item["url"].stringValue 
         storymodel.title_plain = item["title_plain"].stringValue 
         storymodel.thumbnail = item["thumbnail"].stringValue 
         medium.url = item["thumbnail_images"]["medium_large"]["url"].stringValue 
         high.url = item["thumbnail_images"]["mvp-medium-thumb"]["url"].stringValue 
         storymodel.medium_large = medium 
         storymodel.mvp_medium_thumb = high 

         for category in json["posts"]["categories"].arrayValue { 
          let categoryModel = CategoryModel() 
          categoryModel.id = category["id"].intValue 
          categoryModel.title = category["title"].stringValue 
          categories.append(categoryModel) 
         } 
         storymodel.categories = categories 

         for commentobject in json["posts"]["comments"].arrayValue { 
          let comment = CommentModel() 
          comment.content = commentobject["content"].stringValue 
          comment.name = commentobject["name"].stringValue 
          comments.append(comment) 
         } 
         storymodel.comments = comments 

         for customFieldObject in json["posts"]["custom_fields"].arrayValue { 
          let customField = CustomFieldModel() 
          for post_count in customFieldObject["post_views_count"].arrayValue { 
           let count = post_count["post_views_count"].stringValue 
           postCount.append(count) 
          } 
          customField.post_views_count = postCount 
          customFields.append(customField) 
         } 
         storymodel.custom_fields = customFields 
         posts.append(storymodel) 
        } 
        responseModel.posts = posts 
        completionHandler(responseObject: responseModel) 
       } 
      case .Failure(let error): 
       print(error) 
      } 


    } 
} 

はエラーメッセージですUserInfo = {NSDebugDescription =文字0の値が無効です。}

私のコードで何が問題なのですか?

答えて

0

.GETリクエストと転送パラメータを本文に使用しています。結果は失敗になります。

+0

ここにパラメータを追加するにはどうすればよいですか?私はこのように多くの時間を使いました。 –

+0

あなたは '.GET'でそれをしましたか?私が知っているように、.GETはヘッダーに追加するかURLに含めることしかできません。 –

+0

このトピックの後:http://stackoverflow.com/questions/978061/http-get-with-request-body、パラメータ '.GET'を追加できます。しかし、決して役に立たないことはありません。 結果がJSONではありません。なぜあなたは失敗を受け取るのですか。 –