我正在尝试在 Geddy 框架中使用 EJS(嵌入式 javascript)创建一个选择元素。我想做的是有类似的东西(只是一个例子):
<select>
<option value="int"> Integer </option>
<option value="float"> Single precision decimal point </option>
</select>
我没有找到任何例子......我知道创建一个选择
<select>
<option value="X"> X </option>
<option value="Y"> Y </option>
</select>
我必须写
<%- contentTag('select', ['X', 'Y']} %>
但是如何获得我想要的呢?
更新:
我在 EJS 文档中找到了select_tag,但无法识别...我也尝试过类似的混合
<%- contentTag('select', [{value: NumberTypeEL.NonNegativeInteger, text:'nonnegative integer'}, {value: NumberTypeEL.Integer, text: 'integer'}, {value: NumberTypeEL.Decimal, text: 'decimal'}, {value:NumberTypeEL.Fraction, text:'fraction'}], {class:'span6', name:'numberType'}) %>
但仍然没有。还有其他想法吗?