将变量作为标签的玉错误

时间:2016-01-12 08:25:28

标签: javascript node.js express pug

我收到了玉的错误输入是自动关闭的,不应该有内容

input(type='radio') This discount has
   -if type == 1
    | #{value} %
   -else
    | RM #{value}

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

你不能把内容输入。这个html无效

<input type="radio">This discount has 0</input>

可能你想要

label
    input(type='radio') 
    | This discount has
    - if (type == 1)
      | #{value} %
    - else
      | RM #{value}  

或者

input(type='radio') 
span This discount has
- if (type == 1)
  | #{value} %
- else
  | RM #{value}