Неопределенный метод `pageless', использующий jquery.pageless в Ruby on Rails
Я пытаюсь реализовать бесконечную прокрутку и с помощью jquery.pageless
Но я получаю эту ошибку: undefined method 'pageless'
Я включаю jquery.pageless.js в мой application.html.erb в ресурсы:
<%= javascript_include_tag 'jquery-1.3.2.min', 'jquery.pageless' -%>
Любое предложение о том, как решить эту проблему?
2 ответа
Я не знаю, почему вы используете формат:
<%= javascript_include_tag 'jquery-1.3.2.min', 'jquery.pageless' -%>
в приложении.
В assets / javascript / application.js добавьте эти файлы:
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
// GO AFTER THE REQUIRES BELOW.
//
//= require jquery
//= require jqeury.pageless
//= require jquery_ujs
//= require_tree .
Вы должны убедиться, что у вас установлен jquery:
gem install jquery-rails
затем:
bundle install
Также убедитесь, что у вас есть файлы jquery-pageless.js в одном из путей, упомянутых в файле application.js, чтобы он был выбран конвейером ресурсов.
Файл Application.js:
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery.pageless
//= require jquery_ujs
//= require turbolinks
//= require_tree .