我正在尝试在我的span标记中包含erb标记,如下所示:
<span style="width:' +<% @completion %>''%'"></span>
但它不起作用。谁知道怎么做?
答案 0 :(得分:2)
你需要输出@completion
的返回值,在erb中你可以通过这样做来实现:
# with an equal sign:
<span><%= "Hello!" %></span>
# but the following will not output "hello"
<span><% "Hello!" %></span>
#^ no equal sign -> not displayed
在您的情况下:
<span style="width: <%= @completion %>%;"></span>
希望有所帮助!