万一玉的时候怎么放两环呢?

How to put two links in case when of jade?

我用的是jade,万一做两个链接的时候,不能显示正确的样式

我尝试制作多行,但这是错误的。

case pn >= page_count
    when true: |Next Last
    when false: a(href="/orders/list/#{pn+1}")Next a(href="/orders/list/#{page_count}")Last

这里pn是当前页码,page_count字面意思

尝试使用 tag interpolation 语法:

case pn >= page_count
    when true: | Next Last
    when false: | #[a(href="/orders/list/#{pn+1}") Next] #[a(href="/orders/list/#{page_count}") Last]