0
TodoMVC.module "TodoList", (TodoList, App, Backbone, Marionette, $, _) ->

  # TodoList Router
  # ---------------
  #
  # Handle routes to show the active vs complete todo items
  TodoList.Router = Marionette.AppRouter.extend
    appRoutes: "*filter": "filterItems"

  # TodoList Controller (Mediator)
  # ------------------------------
  #
  # Control the workflow and logic that exists at the application
  # level, above the implementation detail of views and models
  TodoList.Controller = ->
    @todoList = new App.Todos.TodoList()

  _.extend TodoList.Controller::,

    # Start the app by showing the appropriate views
    # and fetching the list of todo items, if there are any
    start: ->
      @showHeader @todoList
      @showFooter @todoList
      @showTodoList @todoList
      App.bindTo @todoList, "reset add remove", @toggleFooter, this
      @todoList.fetch()

    showHeader: (todoList) ->
      header = new App.Layout.Header(collection: todoList)
      App.header.show header

    showFooter: (todoList) ->
      footer = new App.Layout.Footer(collection: todoList)
      App.footer.show footer

    showTodoList: (todoList) ->
      App.main.show new TodoList.Views.ListView(collection: todoList)

    toggleFooter: ->
      App.footer.$el.toggle @todoList.length

    # Set the filter to show complete or all items
    filterItems: (filter) ->
      App.vent.trigger "todoList:filter", filter.trim() or ""


  # TodoList Initializer
  # --------------------
  #
  # Get the TodoList up and running by initializing the mediator
  # when the the application is started, pulling in all of the
  # existing Todo items and displaying them.
  TodoList.addInitializer ->
    controller = new TodoList.Controller()
    new TodoList.Router(controller: controller)
    controller.start()

Uncaught NoMethodError:メソッド'filterItems'がコントローラーで見つかりませんでした

マリオネットのTodoMVCの例を取り上げ、 js2coffeeを使用してCoffeeScriptに変換し、requirejsを使用しています。実際のカスタムコードを追加していないため、なぜこれが発生するのかわかりません。私が含めることができる追加情報があれば、私に知らせてください。

4

1 に答える 1

1

私もこのエラーがありました。

問題は次のコードにあります。

TodoList.Controller = ->
    @todoList = new App.Todos.TodoList()

returnJSに変換されると、2行目の前に追加されます。私にとってはtrue、次の行として追加することで問題が解決しました。

TodoList.Controller = ->
    @todoList = new App.Todos.TodoList()
    true
于 2013-04-06T16:48:25.410 に答える