html 属性中的诈骗插值

发布于 2024-11-26 05:41:37 字数 338 浏览 1 评论 0原文

我有这样的事情:

-@ var id:String

%div{:dojoType => 'dojo.data.ItemFileReadStore', :jsType => 'store', :url => "/path/to/resource?id=#{id}"}

我希望变量插值可以在这里工作,但它只是将 #{id} 放入 html 中。我也尝试过:

%div{:url => 'path/to/resource?id='+id}

那甚至无法编译。这样做的正确方法是什么?

I have something like this:

-@ var id:String

%div{:dojoType => 'dojo.data.ItemFileReadStore', :jsType => 'store', :url => "/path/to/resource?id=#{id}"}

I was hoping variable interpolation would work here, but it just puts #{id} into the html. I also tried:

%div{:url => 'path/to/resource?id='+id}

And that doesn't even compile. What is the right way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甩你一脸翔 2024-12-03 05:41:37

正确的语法是:

%div{:url => {"/path/to/resource?id="+id}}

The correct syntax is:

%div{:url => {"/path/to/resource?id="+id}}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文