计划在我的 JMVC 应用程序中使用视图助手。试图在我的 ejs 文件中实现 select_tag 辅助函数,但未能获得所需的结果。下面是代码
在控制器中:
this.choice= [{value: 1, text: 'First Choice'},
{value: 2, text: 'Second Choice'} ];
this.element.html(initView({choice:this.choice}));
在 Ejs 文件中:
<%= select_tag('elementId', 1, this.choice) %>
参考 https://code.google.com/p/embeddedjavascript/wiki/ViewHelpers
我们需要偷任何包裹吗?有示例代码吗?