-1

我有带有 ajax 的 JS 函数,下面是 url:

var company_count = COMPANIES_PER_PAGE;

....

url: '<%=j companies_path(start: ' + company_count + ', f: params[:f]) %>',
....
company_count += COMPANIES_PER_PAGE;

但这给了我脚本:

url: '/companies?f=k&amp;start=company_count',

我想得到前任:

url: '/companies?f=k&start=30',

整个脚本

  <script>
    var COMPANIES_PER_PAGE = <%= @companies_per_page %>;
    var company_count = COMPANIES_PER_PAGE;

    $(document).ready( function(){
      checkScroll();
    });

    function checkScroll() {
      if (nearBottomOfPage()) {
        $('#loading_more_'+(company_count-COMPANIES_PER_PAGE)).fadeTo(200, 1);
        $.ajax({
           type: "GET",
           url: '<%=j companies_path(start: company_count, f: params[:f]) %>',
           dataType: "script"
         });
        company_count += COMPANIES_PER_PAGE;
      } else {
        setTimeout(checkScroll, 250);
      }
    }
  </script>
4

1 回答 1

1

为什么不使用 $.ajax() 的 data 属性呢?它允许您附加所有 JS 变量,以及 Ruby 生成的变量...

$.ajax({
       type: "GET",
       url: '<%=j companies_path %>',
       data: { start: "<%= params[:f] %>", start: company_count },
       dataType: "script"
});
于 2012-12-29T11:32:44.843 回答