如何使用 slim 将一个 div 嵌套在 for 循环中的另一个 div 中

发布于 2025-01-10 06:29:30 字数 232 浏览 1 评论 0原文

我有以下代码,

div class = "content"
- for x in list
  -if x == "test"
    div id = "two"

我希望 div id = "two 嵌套在 div class="content 中,但它显示为自己单独的 div。我将如何根据条件将 div 嵌套在内容 div 中?

I have the following code

div class = "content"
- for x in list
  -if x == "test"
    div id = "two"

I would expect div id = "two to be nested within div class="content however it appears as its own separate div. How would I go about nesting the div within the content div based on the conditional?

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

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

发布评论

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

评论(1

勿忘心安 2025-01-17 06:29:30

您需要缩进第 2-4 行,否则它们将被视为兄弟姐妹。引用文档...

缩进很重要,但缩进深度可以根据您的喜好选择。如果您想先缩进 2 个空格,然后再缩进 5 个空格,这是您的选择。 要嵌套标记,您只需缩进一个空格,其余的就是肉汁。

div class = "content"
  - for x in list
    -if x == "test"
      div id = "two"

You need to indent lines 2-4, otherwise they're treated as siblings. To quote the docs...

Indentation matters, but the indentation depth can be chosen as you like. If you want to first indent 2 spaces, then 5 spaces, it's your choice. To nest markup you only need to indent by one space, the rest is gravy.

div class = "content"
  - for x in list
    -if x == "test"
      div id = "two"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文