我目前正在开始使用Backbone.js。我用Backbone写了一些例子,它们工作正常。 但是现在我需要在Rails 3.1和CoffeeScript中使用Backbone.js。 我使用了运行良好的示例,并使用backbone-rails gem重写了CoffeeScript。
并遇到以下问题。 我简化了代码,但问题仍然存在
我有以下文件:
这里我根据rails app中的main_controller在main.js.coffee文件中启动我的Backbone应用程序:
$ = jQuery
$->
CsfTaskManager.init()
这是骨干应用说明:
#= require_self
#= require_tree ./templates
#= require_tree ./models
#= require_tree ./views
#= require_tree ./routers
window.CsfTaskManager =
Models: {}
Collections: {}
Routers: {}
Views: {}
init: ->
new CsfTaskManager.Routers.AppRouter()
Backbone.history.start()
这是我的应用程序路由器:
class CsfTaskManager.Routers.AppRouter extends Backbone.Router
initialize: (options) ->
goalsBlock = new CsfTaskManager.Views.goalsView()
routes:
"!/": "root",
some other routes...
最后查看:
class CsfTaskManager.Views.goalsView extends Backbone.View
initialize: ->
this.goals = new CsfTaskManager.Collections.GoalsCollection()
el: $('div#app'),
events:
"click .add-btn": "addGoal"
addGoal: ->
alert('ji')
HTML页面包含以下代码:
<div id="app">
<div class="app-screen hidden" id="goal-form" style="display: block; ">
<button class="btn" id="load">
Load
</button>
<h3>
New Goal
</h3>
<div class="form-stacked">
<form accept-charset="UTF-8" action="/goals" class="new_goal" id="new_goal" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓"><input name="authenticity_token" type="hidden" value="Pnt+V/tS1/b079M/1ZIRdw2ss1D6bvJKVh868DXRjUg="></div>
<label for="goal_title">Title</label>
<p></p>
<input class="goal-title" id="goal_title" name="goal[title]" size="30" type="text">
<p></p>
<label for="goal_note">Note</label>
<p></p>
<input class="goal-note" id="goal_note" name="goal[note]" size="30" type="text">
</form>
</div>
<p>
<button class="add-btn btn">
Add
</button>
</p>
<ul id="goals-list"></ul>
</div>
<table class="app-screen bordered-table" id="calendar-grid" style="display: none; ">
<tbody><tr>
<td colspan="2">
week
</td>
</tr>
<tr>
<td>
day
</td>
<td>
<div id="calendar"></div>
</td>
</tr>
</tbody></table>
<div class="app-screen hidden" id="role-form" style="display: none; ">
<h3>
New User Role
</h3>
<div class="form-stacked">
<form accept-charset="UTF-8" action="/roles" class="new_role" id="new_role" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓"><input name="authenticity_token" type="hidden" value="Pnt+V/tS1/b079M/1ZIRdw2ss1D6bvJKVh868DXRjUg="></div>
<label for="role_title">Title</label>
<p></p>
<input class="role-title" id="role_name" name="role[name]" size="30" type="text">
<p></p>
<label for="role_note">Note</label>
<p></p>
<input class="role-note" id="role_description" name="role[description]" size="30" type="text">
</form>
</div>
<p>
<button class="add-btn btn">
Add
</button>
</p>
</div>
</div>
所以.add-btn元素嵌套在#app中,但单击此按钮不会触发事件。 哪里可能有麻烦?
之前,当我在一个.js文件中使用相同的应用程序时,没有coffeescript,namespacing和backbone-rails gem,一切都很好。
顺便说一句,appRouter运行正常,goalView对象也是成功创建的,但事件由于某些原因不会触发。
请给我一些提示,因为我真的被卡住了......
答案 0 :(得分:0)
我认为问题可能是CsfTaskManager
中的以下行:
el: $('div#app'),
通常,el应该是jQuery选择器字符串或DOM元素。在这里传递一个jQuery对象。尝试将其更改为:
el: 'div#app'
(CoffeeScript中也不需要逗号)。