0

変更のポーリングを追跡しようとしていますが、次のエラーが発生します

Uncaught TypeError: Object [object global] has no method CommentPoller

これが私のcomment.js.coffeeファイルのコードです

# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/

@CommentPoller ->
  poll: ->
    setTimeout @request, 5000

  request: ->
    $.get($('#comments').data('url'))

jQuery ->
  if $('#comments').length > 0
    CommentPoller.poll()

私は何を間違っていますか?ありがとうございました

4

1 に答える 1

1

から最初の行を変更してみてください

@CommentPoller ->

CommentPoller =
于 2013-02-26T01:08:07.523 に答える