努力学习骨干。在我看过的几个应用程序中(这里有一个http://blog.viison.com/post/11097185009/how-to-switch-views-using-backbonejs),应用程序或演示应用程序的作者初始化ApplicationRouter 在 index.html 文件中,而所有其他 javascript 都在 JavaScript 文件夹中。是什么让应用程序路由器需要在 html 文件中进行初始化?
<script type="text/javascript">
var router = new ApplicationRouter($('#content'));
Backbone.history.start();
</script>