gpt4 book ai didi

templates - Handlebars 中的动态属性查询

转载 作者:行者123 更新时间:2023-12-04 09:53:48 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Handlebars.js: index access to global.json from a loop

(1 个回答)


1年前关闭。




我正在尝试根据 pid 动态获取 Handlebars 中对象的属性。该#each循环当前处于打开状态。我已经尝试了以下代码,但根本没有填充该值。我想象存在某种上下文问题,但由于我对 Handlebars 很陌生,所以我不知道如何去做。

<div class="card-deck">
{{#each entries}}
{{! backend only hidden comments}}
<div class="card">
<img class="card-img-top img-fluid" src="/userimgres/{{pid}}/0.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title"><strong>{{name}}</strong></h5>
<p class="card-text">{{desc}}</p>
</div>
<div class="card-footer">
<small class="text-muted">Posted {{../ago.[pid]}} ago (ID: {{pid}})</small>
</div>
</div>
{{/each}}
</div>

我的 ago对象设置为键为 pid以及作为字符串的值,以人类可读的格式描述自指定日期/时间以来已经过了多长时间。
对于它的值(value),它是由一个来自常量对象的单独函数生成的,因此为什么它一开始不在同一个对象中。它看起来像这样:

{
'1000': '2 hours ago',
'1001': 'a month ago',
'1002': '3 days ago',
'2000': '4 days ago',
'2001': '12 days ago',
'2002': '4 months ago',
'2003': 'a month ago'
}

当我将代码更改为静态并查询 {{../ago.[1001]}} ,我收到了该特定 ID 的字符串。然而,由于代码依赖于每个,这显然会为其他条目返回相同的确切字符串。

如何修改此语句以动态查询 ago键值的对象 - 由 pid 定义的键当前正在 #each 中迭代(即我在这个代码块的其他地方通过简单地调用 {{pid}} 来做什么)?

我试过 {{../ago.[{{pid}}]}}和其他几种安排,但似乎都没有奏效。
非常感谢您的任何帮助,如果不清楚,我很乐意澄清任何事情。

最佳答案

您必须将查找助手用作 documented here

从文档:

The lookup helper allows for dynamic parameter resolution using Handlebars variables. This is useful for resolving values for array indexes.

{{#each people}}
{{.}} lives in {{lookup ../cities @index}}
{{/each}}```


在这个问题的实例中,您可以简单地将这个示例从使用当前索引更改为使用位于与 pid 相同的上下文中的变量(在本例中为 #each)。循环在。

{{lookup ../ago pid}}应该为你工作。它获取对象 ago从父上下文,然后基于 #each循环的当前迭代 entries.pid ,它从 ../pid 中获取值pid 的键它开启了。

在其他情况下,您可能需要继续阅读此答案中链接的文档以了解使用 locate 的其他方式。 helper :

It can also be used to lookup properties of object based on data from the input. The following is a more complex example that uses lookup in a sub-expression to change the evaluation context to another object based on a property-value.

{{#each persons as | person |}}
{{name}} lives in {{#with (lookup ../cities [resident-in])~}}
{{name}} ({{country}})
{{/with}}
{{/each}}

关于templates - Handlebars 中的动态属性查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61969742/

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