我在 .html.erb 视图文件中有一个类,我想根据变量给出一个 id。
我想做这样的事情:
<ul id="#{store}">
wherestore
是一个包含字符串“store1”的变量。
我希望这能产生这样的 ul: <ul id=store1>
,但我得到<ul id=#{store}>
了。
我是否需要创建一个助手来帮助实现这一点,或者是否有一些我忽略的语法?
我在 .html.erb 视图文件中有一个类,我想根据变量给出一个 id。
我想做这样的事情:
<ul id="#{store}">
wherestore
是一个包含字符串“store1”的变量。
我希望这能产生这样的 ul: <ul id=store1>
,但我得到<ul id=#{store}>
了。
我是否需要创建一个助手来帮助实现这一点,或者是否有一些我忽略的语法?