如何在MarkLogic的TDE中提供空值?

时间:2019-05-14 12:30:39

标签: javascript json templates marklogic

我正在用JSON为文档创建JavaScript模板。字段之一为空。 nullable:true无法使用。

我将nullable设置为true,因此它仅在值为“”而不是null时才接受该值。如果我的架构中包含TDE,则文档插入失败。

               {
                    "name": "description",
                    "scalarType": "string",
                    "val": "/envelope/description",
                    "nullable": true
                }

我希望插入文档,并且希望将此特定字段读取为null,这是nullable属性在“”中所做的事情。 我可以为它做哪些更改?

1 个答案:

答案 0 :(得分:0)

我添加了这个:

"invalidValues":"ignore"

这解决了问题。