我在 Jade 中有一个非常奇怪的问题,我无法访问架构中未定义的值。
我正在使用strict:false
我的架构并将值保存到它。我的数据如下所示:
{
"title" : "This is a title in the schema",
"notInSchema" : "This will never show up"
}
这有效:
h1= post.title
这不起作用:
h1= post.notInSchema
如果我将所有数据转储到模板中,我可以看到两条数据:
pre= JSON.stringify(options,null,'\t') //{"title" : "This is a title in the schema", "notInSchema" : "This will never show up"}
如果我添加notInSchema
到我的架构中,它会显示出来。我怎么能做到这一点而不添加它?