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.
这篇关于您可以在玉中引用带有破折号的变量吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您可以在玉中引用带有破折号的变量吗?
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06