1

我一直在查看这些示例,但我没有找到一种方法来指定一个属性,该属性的值是一个 JSON 对象,字符串作为值。我有一个这样的对象:

{
  id: 123,
  title: "I am a title",
  dynamic_attributes: {
    "key1": "value1",
    "key2": "value2",
    "keyN": "valueN",
  }
}

我正在努力指定如何指定,dynamic_attributes因为键是动态的,并且在编写文档时还不知道。它基本上是一个 JSON 对象,它应该只包含字符串作为值。

有没有办法在 MSON 中做到这一点?

4

1 回答 1

1

我找到了解决方案,它被称为变量属性名称。我之前偶然发现了它们,但不理解它们。

这是 MSON:

# Entity (object)

## Properties

+ id: `12` (integer,required) - The ID of this entity.
+ dynamic_attributes (AttributeValue) - Map of custom attribute values.

# AttributeValue (object)

## Properties

+ *key1* (string) - Value for Key 1
+ *key2* (string) - Value for Key 2

有关变量属性名称,请参阅MSON 规范

于 2017-05-15T10:33:09.703 回答