1

有人可以帮我解决这个问题,我得到错误:

Object [object Object] has no method 'select2'

如果我通过使用 turbolinks 的链接。但是,如果我重新加载页面 select2 工作。

应用程序.js

//= require jquery
//= require jquery_ujs
//= require select2
//= require foundation
//= require turbolinks
//= require_tree .

$(function(){ $(document).foundation(); });

events.js.coffee

loadAdress = (json) ->
    $("#event_adress").val json.adress + "\n" + (if json.zipcode? then json.zipcode else '') + ' ' + json.town
    $("#event_name").val json.name
    $("#event_cell_phone").val (if json.cellPhone? then '+45'+json.cellPhone else '') 
    $(".hidden").slideDown()

ready = ->
    if $("#event_contact_id").length > 0
        $("#event_contact_id").select2
            width: "element"
            placeholder: "Find kunde"
        $("#event_contact_id").on "select2-selecting", (e) ->
            $.ajax "/contacts/" + e.val + ".json",
            dataType: "json"
            success: loadAdress

$(document).ready(ready)
$(document).on('page:load', ready)

我希望有人可以帮助我解决这个问题,因为我已经尝试解决这个问题几个小时了。

4

2 回答 2

1
$(document).on 'ready page:load', ->
  #your stuff
于 2014-11-03T12:00:49.083 回答
0

我决定不使用 turbolinks 并将其删除。

于 2014-07-23T11:39:39.513 回答