我正在尝试从我的主干视图执行 jsp 代码。我从我的 Html 调用服务器端 api,如下所示
index.jsp(sample.js包含在这个jsp中)
%@ page contentType="text/html;charset=UTF-8"
import="foo.*,java.util.List"
%>
<%
Foo foo = new Foo();
List<XYZ> xyzList = foo.getList();
%>
我正在使用骨干框架。我的js代码如下。
示例.js
SampleView = Backbone.ModalView.extend(
{
name: "SampleView",
model: SomeModel,
templateHtml : "<div ><span>Search </span>" +
"<table border='1'>"+
"<thead>"+
"<tr>"+
"<td></td>"+
"<th>header1</th>"+
"<th>header2</th>"+
"<th>header3</th>"+
"</tr>"+
"</thead>"+
"<tr>"+
"<% for(XYZ xyz: xyslist ){ %>"+
"<td><input type='checkbox' value='<%= xyz.getName()%>'></td>"+
"<td name='selected'><%= xyz.getName()%></td>"+
"<td></td>"+
"<td></td>"+
"<% } %>"+
"</tr>"+
"<tr>"+
"<td><input type='checkbox' value='test'></td>"+
"<td name='selected'>test</td>"+
"<td></td>"+
"<td></td></tr>"+
"</table><button id='select'>Select</button></div>",
initialize: function(){
_.bindAll( this, "render");
this.template = _.template( this.templateHtml);
},
events: {
"click #select": "select"
},
select: function(){
//implementation
},
render: function(){
$(this.el).html( this.template());
return this;
}
});
问题是,它不执行jsp代码。它仅显示硬编码的“测试”复选框,不会从服务器端检索列表。如果我在这里遗漏了什么,你能告诉我吗?谢谢。