Cocoa Error 3840 - NSJSONSerialization

后端 未结 2 618
萌比男神i
萌比男神i 2020-12-22 04:57

I\'m trying to parse a JSON string returned from a ASP.NET web service. The return string has been simplified to just this:



        
2条回答
  •  萌比男神i
    2020-12-22 05:29

    Is the Web service actually returning the and portions of that string within the content of the document? If so, that's the problem: The valid JSON string is simply:

    [{"Firstname":"Johnny"}],

    This is the only content your Web response should contain. Everything in angled brackets is not actually JSON data, and it's throwing the parser off.

提交回复
热议问题