18

我的 MyModel 继承自 MTLModel(使用 GitHub Mantle pod)。我的模型.h

#import <Mantle/Mantle.h>
@interface MyModel : MTLModel <MTLJSONSerializing>
@property (nonatomic, copy, readonly) NSString *UUID;
@property (nonatomic, copy) NSString *someProp;
@property (nonatomic, copy) NSString *anotherProp;
@end

我的模型.m

#import "MyModel.h"
@implementation MyModel
+ (NSDictionary *)JSONKeyPathsByPropertyKey
{
        return @{
            @"UUID": @"id",
            @"someProp": @"some_prop",
            @"anotherProp": @"another"
    };
}
}
@end

现在我想使用 AFNetworking 将 JSON 发送到后端。在此之前,我将模型实例转换为 JSON NSDictionary 以用作我的请求中的参数/正文有效负载。

NSDictionary *JSON = [MTLJSONAdapter JSONDictionaryFromModel:myModel];

但是这个 JSON 由奇怪的“”字符串组成,用于我的模型的属性,它们是 nil。相反,我想要的是 Mantle 省略这些键/值对,而只是吐出一个 JSON,其中只有非 nil 或 NSNull.null 的属性,无论如何。

4

4 回答 4

39

这是 Mantle 的一个常见问题,它被称为隐式 JSON 映射

MTLJSONAdapter读取模型的所有属性以创建 JSON 字符串,可选择将属性名称替换为+JSONKeyPathsByPropertyKey.

如果您希望从模型的 JSON 表示中排除某些属性,请将它们映射到NSNull.null您的+JSONKeyPathsByPropertyKey

+ (NSDictionary *)JSONKeyPathsByPropertyKey {
    return @{
        @"UUID": @"id",
        @"someProp": @"some_prop",
        @"anotherProp": @"another",
        @"myInternalProperty": NSNull.null,
        @"myAnotherInternalProperty": NSNull.null,
    };
}

隐式 JSON 映射最近已成为一个值得注意的问题,目前正在 Mantle 在 GitHub 的主存储库中讨论解决方案。

请参阅问题#137#138#143和#149下的当前讨论。


编辑:我显然误解了这个问题,但是现在,当我想我理解正确时,答案很简单。

MTLJSONAdapterMTLModel使用'dictionaryValue属性生成 JSON 数据。如果您希望从 JSON 本身中排除一个属性,您可以在您的MYModel:

- (NSDictionary *)dictionaryValue {
    NSMutableDictionary *originalDictionaryValue = [[super dictionaryValue] mutableCopy];

    if (self.aPropertyThatShouldBeExcludedWhenNil == nil) {
        [originalDictionaryValue removeObjectForKey:@"aPropertyThatShouldBeExcludedWhenNil"];
    }

    /* repeat the process for other "hidden" properties */

    return originalDictionaryValue;
}

编辑#2:查看代码*以删除以下所有值nil

- (NSDictionary *)dictionaryValue {
    NSMutableDictionary *modifiedDictionaryValue = [[super dictionaryValue] mutableCopy];

    for (NSString *originalKey in [super dictionaryValue]) {
        if ([self valueForKey:originalKey] == nil) {
            [modifiedDictionaryValue removeObjectForKey:originalKey];
        }
    }

    return [modifiedDictionaryValue copy];
}

* - code sample suggested by matths.

于 2013-10-07T14:29:16.357 回答
2

我通过创建MTLJSONAdapter 子类和覆盖-serializablePropertyKeys:forModel:方法来删除 nil 值键。

MTLJSONAdapterWithoutNil.h

/** A MTLJSONAdapter subclass that removes model dictionaryValue keys whose value is `[NSNull null]`. */
@interface MTLJSONAdapterWithoutNil : MTLJSONAdapter
@end

MTLJSONAdapterWithoutNil.m

#import "MTLJSONAdapterWithoutNil.h"

@implementation MTLJSONAdapterWithoutNil

- (NSSet *)serializablePropertyKeys:(NSSet *)propertyKeys forModel:(id<MTLJSONSerializing>)model {
    NSMutableSet *ms = propertyKeys.mutableCopy;
    NSDictionary *modelDictValue = [model dictionaryValue];
    for (NSString *key in ms) {
        id val = [modelDictValue valueForKey:key];
        if ([[NSNull null] isEqual:val]) { // MTLModel -dictionaryValue nil value is represented by NSNull
            [ms removeObject:key];
        }
    }
    return [NSSet setWithSet:ms];
}

@end

并使用它来创建 JSON 字典。像这样:

NSDictionary *JSONDictionary = [MTLJSONAdapterWithoutNil JSONDictionaryFromModel:collection error:nil];

注意: 如果您要覆盖NSValueTransformer数组或字典属性的方法,您还必须将MTLJSONAdapter类更改为您的子类。像这样:

+ (NSValueTransformer *)myDailyDataArrayJSONTransformer {
    return [MTLJSONAdapterWithoutNil arrayTransformerWithModelClass:KBDailyData.class];
}
于 2015-06-29T08:11:29.523 回答
0

覆盖 - dictionaryValues 没有给我预期的行为

所以我为 MTL 基类创建了一个方法

    - (NSDictionary *)nonNullDictionaryWithAdditionalParams:(NSDictionary *)params error:(NSError *)error {
        NSDictionary *allParams = [MTLJSONAdapter JSONDictionaryFromModel:self error: &error];
        NSMutableDictionary *modifiedDictionaryValue = [allParams mutableCopy];

        for (NSString *originalKey in allParams) {
            if ([allParams objectForKey:originalKey] == NSNull.null) {
                [modifiedDictionaryValue removeObjectForKey:originalKey];
            }
        }

        [modifiedDictionaryValue addEntriesFromDictionary:params];
        return [modifiedDictionaryValue copy];
    }
于 2015-11-11T19:05:42.900 回答
-1

EDIT #2 曾经为我使用以前的 Mantle 代码库。现在我必须执行以下操作才能继续使用 EDIT #2:

在文件 MTLJSONAdapter.m 中,替换此行:

NSDictionary *dictionaryValue = [model.dictionaryValue dictionaryWithValuesForKeys:propertyKeysToSerialize.allObjects];

NSDictionary *dictionaryValue = model.dictionaryValue;

以上是我目前的解决方法

{ }

代替

{
  "AddressLine2" : null,
  "City" : null,
  "ZipCode" : null,
  "State" : null,
  "AddressLine1" : null
}
于 2015-05-28T22:47:49.187 回答