1

NSMutableArrayアイテムが含まれている Cart オブジェクトをシリアル化しようとしていますが、次のようになります。

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write (Item)'

NSJSONSerializationこれがどのように機能するかを理解している場合は、正しく機能するために辞書の配列を作成する必要があります。それは私が下でやっていることではありませんか?

マイカート.h:

@interface Cart : BaseObject

@property (nonatomic, strong) NSString *comp;
@property (nonatomic, strong) NSString *sono;
@property (nonatomic, strong) NSString *cust;
@property (nonatomic, strong) NSString *scus;
@property (nonatomic, strong) NSString *cnid;
@property (nonatomic, strong) NSString *dldt;
@property (nonatomic, strong) NSString *whse;
@property (nonatomic, strong) NSString *pono;
@property (nonatomic, strong) NSString *pon2;
@property (nonatomic, strong) NSString *emad;
@property (nonatomic, strong) NSString *pkin;
@property (nonatomic, strong) NSString *comt;
@property (nonatomic, strong) NSString *rtin;
@property (nonatomic, strong) NSString *lbfg;
@property (nonatomic, strong) NSString *containsOpenPriced;
@property (nonatomic, strong) NSString *totalProductAmount;
@property (nonatomic, strong) NSMutableArray *items;
@property (nonatomic) BOOL *isSubmitting;

@end

マイカート.m:

@implementation Cart

@synthesize comp;
@synthesize sono;
@synthesize cust;
@synthesize scus;
@synthesize cnid;
@synthesize dldt;
@synthesize whse;
@synthesize pono;
@synthesize pon2;
@synthesize emad;
@synthesize pkin;
@synthesize comt;
@synthesize rtin;
@synthesize lbfg;
@synthesize containsOpenPriced;
@synthesize totalProductAmount;
@synthesize items;

- (id) initWithDictionary:(NSDictionary *)dictionary {
    self = [super init];
    if (self) {
        self.comp = dictionary[@"comp"];
        self.sono = dictionary[@"sono"];
        self.cust = dictionary[@"cust"];
        self.scus = dictionary[@"scus"];
        self.cnid = dictionary[@"cnid"];
        self.dldt = dictionary[@"dldt"];
        self.whse = dictionary[@"whse"];
        self.pono = dictionary[@"pono"];
        self.pon2 = dictionary[@"pon2"];
        self.emad = dictionary[@"emad"];
        self.pkin = dictionary[@"pkin"];
        self.comt = dictionary[@"comt"];
        self.rtin = dictionary[@"rtin"];
        self.lbfg = dictionary[@"lbfg"];
        self.containsOpenPriced = dictionary[@"containsOpenPriced"];
        self.totalProductAmount = dictionary[@"totalProductAmount"];

        NSArray *itemsArray = dictionary[@"items"];
        NSMutableArray *itemsMutableArray = [[NSMutableArray alloc]init];
        for (NSDictionary *itemDictionary in itemsArray) {
            Item *item = [[Item alloc] initWithDictionary:itemDictionary];
            [itemsMutableArray addObject:item];
        }
        self.items = itemsMutableArray;
    }

    return self;
}

@end

オブジェクトをシリアル化するための私のコード:

NSMutableArray *itemsToSerialize = [[NSMutableArray alloc] init];
for (Item *item in cart.items) {
    NSMutableDictionary *itemDict = [[NSMutableDictionary alloc] init];
    [itemDict setObject:item forKey:@"item"];
    [itemsToSerialize addObject:item];
}

NSMutableDictionary *data = [@{
        @"comp" : cart.comp,
        @"rtin" : cart.rtin,
        @"pono" : cart.pono,
        @"pon2" : cart.pon2,
        @"totalProductAmount" : totalProductAmount,
        @"sono" : cart.sono,
        @"emad" : cart.emad,
        @"lbfg" : lbfg,
        @"pkin" : cart.pkin,
        @"containsOpenPriced" : containsOpenPriced,
        @"cnid" : cart.cnid,
        @"whse" : cart.whse,
        @"scus" : cart.scus,
        @"dldt" : cart.dldt,
        @"cust" : cart.cust,
        @"comt" : cart.comt,
        @"items": itemsToSerialize
} mutableCopy];

NSString *command = @"shoppingCart.update";
NSMutableDictionary *request = [@{
        @"command" : command,
        @"comp" : cart.comp,
        @"cnid" : sessionController.operator.cnid,
        @"cust" : cart.cust,
        @"data" : data
} mutableCopy];

NSData *jsonData = [NSJSONSerialization dataWithJSONObject:request options:kNilOptions error:nil];

NSJSONSerializationこれは上記の行で死ぬ。私は何が欠けていますか?

4

3 に答える 3

4

この行:[itemsToSerialize addObject:item];である必要があります[itemsToSerialize addObject:itemDict];。その結果、アイテム自体の配列をシリアル化しようとしているため、表示されている例外が発生します。

于 2013-10-18T22:06:52.963 に答える
3

NSJSONSerialization は、配列 (NSArrayまたはNSMutableArray)、辞書 (NSDictionaryまたはNSMutableDictionary、文字列 (NSStringまたはNSMutableString)、およびNSNumber.

一般的なメカニズムは、- (NSDictionary *)serializeすべての値を辞書にコピーして NSJSONSerialization に渡すメソッドをクラスに作成することです。次に- (id)initFromSerialization:(NSDictionary *)serialization、オブジェクトを逆シリアル化するために実装します。

于 2013-10-19T03:53:34.117 に答える
1

私はこれがちょっと遅いことを知っていますが、おそらくこのクラスはあなたのコーディングを楽にすることができます:

カスタム NSObject を JSON で読み取り可能なオブジェクト (NSArray または NSDictionary) に変換するクラスです。試してみてください。プロパティをスキップする機能があり、プロパティ タイプを文字列から NSInteger または Float に変更できます。また、最終的な出力プロパティ名を変更することもできます。

CustomObject *X;
    X.property1 = @"Test";

//and the output JSON readable format you want tot change X to Y

//CustomObject converted to readable format
   {Y = @"Test"}

ここにクラス逆アセンブラーがあります

于 2014-01-17T08:44:19.950 に答える