gpt4 book ai didi

javascript - 无法格式化 keystone.js 中的嵌套日期字段

转载 作者:行者123 更新时间:2023-11-28 00:27:27 25 4
gpt4 key购买 nike

我正在扩展 keystone.js 以支持模型中的多种语言。

原始模型如下所示:

Post.add({
title: { type: String, required: true },
publishedDate: { type: Types.Date, index: true },
//... more irrelevant fields
});

我的扩展模型如下所示:

Post.add({
title: { type: String, required: true },
en: {
title: { type: String },
publishedDate: { type: Types.Date, index: true },
//... more irrelevant fields
},
es: {
title: { type: String },
publishedDate: { type: Types.Date, index: true },
//... more irrelevant fields
},
//... more languages following the same pattern
});

我在使用 View 模板中嵌套的publishedDate 属性时遇到问题。

适用于原始模型的原始 View 代码:

{% if post.publishedDate %}
<br>on {{ post._.publishedDate.format('MMMM DD, YYYY') }}
{% endif %}

调整了我的新模型的 View 代码(这是我遇到问题的地方):

{% if post[lang].publishedDate %}
<br>on {{ post[lang]._.publishedDate.format('MMMM DD, YYYY') }}
{% endif %}

使用 post[lang].xxxxxx 我可以引用帖子中的所有其他项目(例如 post[lang].title

我是否遗漏了一些导致这些嵌套下划线函数失败并出现以下错误的内容?

non_object_property_load Error thrown for request" /en/blog
TypeError: Cannot read property 'publishedDate' of undefined



编辑:
它变得更加奇特......下面似乎有效:

{% if post[lang].publishedDate %}
<br>on {{ post._[lang].publishedDate.format('MMMM DD, YYYY') }}
{% endif %}

如果有人可以解释为什么这样做(或者更好的方法来实现这一点),我将非常感激。

最佳答案

@JRulle,我认为错误位于以下行:

<br>on {{ post[lang]._.publishedDate.format('MMMM DD, YYYY') }}

问题在于下划线方法属于 List 对象。例如,要访问 post.en.publishedDate 的下划线方法,您可以使用以下语法:post._.en.publishedDate.format('MMMM DD, YYYY')

您应该将上面的行更改为:

<br>on {{ post._[lang].publishedDate.format('MMMM DD, YYYY') }} 

关于javascript - 无法格式化 keystone.js 中的嵌套日期字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29350601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com