骨干事件被触发而没有触发
所以我有一个奇怪的问题,即使他们还没有被触发,我的骨干事件也被解雇了。 基本上我正在做一个音符编辑器应用程序。 在笔记本身中,用户可以按cmd + b加粗文本或任何其他法线。 然后触发一个事件,该事件冒泡到应该订阅该事件的AppController并调用正确的方法。
以下是调用触发器的注释视图:
class MeetingNote.View.NoteView extends Backbone.View
adminTemplate: _.template($('#AdminNoteTemplate').html())
normalTemplate: _.template($('#NormalNoteTemplate').html())
className: 'note'
events:
'keydown' : 'handleKeyDownsForStyling'
# all of the normal backbone stuff.... init/render/blah
handleKeyDownsForStyling: (e) ->
if @admin == true
if e.metaKey
switch e.which
when 66 then @trigger "boldSelection"
when 73 then @trigger "italicizeSelection"
when 85 then @trigger "underlineSelection"
那么这里是我的AppController,它在NoteView被实例化时绑定到事件
class MeetingNote.View.AppController extends Backbone.View
template: _.template($('#MeetingNoteAppTemplate').html())
className: 'MeetingNoteApp'
initialize: (options) ->
@admin = options.privilege
@render()
render: ->
@$el.html(@template())
$('#container').append(@$el)
@initializeApp()
initializeApp: ->
@adminTools = new MeetingNote.View.AdminTools if @admin == true
notes = new MeetingNote.Collection.NotesCollection()
notes.fetch {
success: (collection) =>
_.each collection.models, (model) =>
note = new MeetingNote.View.NoteView {model: model, privilege: @admin}
@bindNoteEvents note if @admin == true
}
bindNoteEvents: (note) ->
note.on "boldSelection", @adminTools.boldSelection(), note
note.on "italicizeSelection", @adminTools.italicizeSelection(), note
note.on "underlineSelection", @adminTools.underlineSelection(), note
最后,这里是@ adminTools.boldSelection()函数
boldSelection: ->
console.log( "yo" )
出于某种原因,在页面加载时,即使我从未通过在注释视图中按cmd + b发送触发器,也会触发console.log。 任何人都知道为什么Backbone.Event会自动启动?
这是一个函数调用:
@adminTools.boldSelection()
#------------------------^^
这是对一个函数的引用:
@adminTools.boldSelection
你应该用手on
对函数的引用,以便以后可以调用该函数。 你的bindNoteEvents
应该看起来更像这样:
bindNoteEvents: (note) ->
note.on "boldSelection", @adminTools.boldSelection, note
note.on "italicizeSelection", @adminTools.italicizeSelection, note
note.on "underlineSelection", @adminTools.underlineSelection, note
# No parentheses here --------------------^^^^^^^^^^^^^^^^^^
链接地址: http://www.djcxy.com/p/63105.html