基本设置
Backbone 需要 Underscore 和(可选) jQuery - 用于 DOM 操作(使用 Backbone.View)和 RESTful 持久性。
启动和运行 Backbone 的最快方法是在 HTML <head>
中创建一个带有简单脚本标签的 index.html
文件:
<html>
<head>
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.3.3/backbone-min.js"></script>
</head>
<body>
</body>
</html>
Backbone 现在可以在页面中使用。