以下是在骨干网上实施的一段代码。
new staffListViewN().render(qualifiedStaff,this.id);
我收到错误
“字符串不是函数”
下面是上面渲染函数的实现。
staffListViewN = Backbone.View.extend({
el:'#staffs-list',
render:function(stafflistParam,id)
{
var stafflist = stafflistParam;
var ref = this;
if(validate.variable(stafflist))
{
agentList = {agentList:stafflist};
ref.$el.html(staffListTemplate);
}
}
});