4

我在通过JSONModel 库读取 JSON 时遇到问题

{"images":[{"id":1,"name":"name1","img":"3423","note":"note1"},{"id":2,"name":"name2","img":"rew","note":"note2"},{"id":3,"name":"name3","img":"dsfs","note":"note3"},{"id":4,"name":"name4","img":"cxvxc","note":"note4"},{"id":5,"name":"name5","img":"erwe","note":"note5"}]}

类模型是

#import "JSONModel.h"

@protocol ImagesModel @end

@interface ImagesModel : JSONModel
@property int id;
@property (strong, nonatomic) NSString* name;
@property (strong, nonatomic) UIImage* img;
@property (strong, nonatomic) NSString* note;
@end

我得到了这个错误

   Terminating app due to uncaught exception 'Bad property protocol declaration', reason: '<ImagesModel> is not allowed JSONModel property protocol, and not a JSONModel class.'

请问有什么帮助吗?

4

2 回答 2

4

我可以看到您粘贴的代码有两个问题。

你的模型很好,但它是一个项目的模型 - 即。这是您将用于加载单个图像的模型 - 不是一次加载所有图像。因此,您需要一个模型来描述您拥有一组图像,以及另一个模型(您拥有的模型)来描述每个图像对象。

第二个问题是您的属性之一是 UIImage 对象,但您在 JSON 提要中传递字符串。

因此,要让您的示例正常工作,您需要:

#import "JSONModel.h"

//define the single image object protocol
@protocol ImageModel @end

//define the single image model
@interface ImageModel : JSONModel
@property int id;
@property (strong, nonatomic) NSString* name;
@property (strong, nonatomic) NSString* img;
@property (strong, nonatomic) NSString* note;
@end

@implementation ImageModel
@end

//define the top-level model for the collection of images
@interface Images : JSONModel
@property (strong, nonatomic) NSArray<ImageModel>* images;
@end

然后读取您的 JSON 字符串并创建一个图像模型:

NSError* err = nil;
Images* imagesCollection = [[Images alloc] initWithString:JSONstring error:&err];

然后 imagesCollection.images 中的每个元素都是一个ImageModel实例。

瞧!

于 2013-03-12T17:43:24.353 回答
0

我认为您没有在.m文件中实现此类。因此,当JsonModel内部执行该NSClassFromString()方法时,它会崩溃。

于 2019-01-21T09:18:48.120 回答