如何从路由器中删除主干视图?我正在尝试运行检查,如果存在某个视图,请将其删除。我只是无法弄清楚实现这一点的语法。
我努力了:
if(typeof mysite.city != "undefined")
{
console.log(mysite.city.View.prototype.__proto__.remove);
//Calling this remove function throws the error
mysite.city.View.prototype.__proto__.remove();
}
但是由于强制重新加载页面,我得到了一些无法完全阅读的未捕获异常错误。我的 console.log 输出: function (){this.$el.remove();return this} 我只是不知道如何让它执行。