您可以在玉中引用带有破折号的变量吗?

Can you refer to variables with dashes in jade?(您可以在玉中引用带有破折号的变量吗?)
本文介绍了您可以在玉中引用带有破折号的变量吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在我的翡翠模板中做这样的事情

I'm trying to do something like this in my jade template

a.apply-url(href="#{apply-url}")

但它被解释为应用减去 url"

But it's being interpreted as 'apply minus url'

有没有办法强制解释器做正确的事情?或者有什么方法可以引用顶级对象,并将索引放在引号中,像这样?

Is there a way I can force the interpreter to do the right thing? Or is there some way to refer to a top-level object, and put the index in quotes, like this?

a.apply-url(href="#{this['apply-url']}")

推荐答案

我对 Jade 不是很熟悉,但我之前研究过一点.在 here 玩了一段时间后,我能够让它工作:

I'm not all that familiar with Jade, but I have looked into it a little bit before. After playing around a while here, I was able to get this to work:

a.apply-url(href="#{locals['apply-url']}")

{"apply-url": "foo"}

产生:

<a href="foo" class="apply-url"></a>

这是可行的,因为这个特定的实现将数据存储在名为 locals 的局部变量中,然后由模板函数关闭.据我所知,这是一个实现细节,我不一定期望它在其他 Jade 实现中也能工作.

This works because this particular implementation stores the data in a local variable named locals which is then closed over by the templating function. As far as I can tell, this is an implementation detail, and I wouldn't necessarily expect this to work in other Jade implementations.

这篇关于您可以在玉中引用带有破折号的变量吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)