gpt4 book ai didi

javascript - 如何在lodash模板中传递对象键(带有特殊字符或空格)?

转载 作者:行者123 更新时间:2023-12-03 06:43:23 24 4
gpt4 key购买 nike

我们可以在模板中传递像键这样的数组

var compiled = _.template('<%= [hello] %>')({ 'hello': 'how are you'});
console.log(compiled);// how are you

或类似对象键

var compiled = _.template('<%= hello %>')({ 'hello': 'how are you' });

console.log(compiled);//how are you

如何传递一些特殊字符的键名,例如?

var compiled = _.template("<%= ['hell:-o'] %>")({ 'hell:-o': 'how are you' });

和多维数组一样?

var compiled = _.template("<%= [hello][hello] %>")({ 'hello': {'hello': 'how are you'} }); 

最佳答案

默认情况下,整个对象在模板内以 obj 形式提供,因此您可以像这样执行#3:

> _.template("<%= obj['hell:-o'] %>")({ 'hell:-o': 'how are you' });
"how are you"

您甚至可以更改此变量的名称,如 docs 中所述。 :

_.template("<%= data['hell:-o'] %>", {variable: "data"})({ 'hell:-o': 'how are you' });
"how are you"

对于#4,您可以像在 JS 中一样访问它:

> _.template("<%= hello.hello %>")({ 'hello': {'hello': 'how are you'} }); 
"how are you"

关于javascript - 如何在lodash模板中传递对象键(带有特殊字符或空格)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37854683/

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