0

我的菜单中有一个 link_to :remote ajax 调用,它在单击时动态呈现每个页面的内容。大部分内容都被调用和替换,但是当我第二次单击菜单链接时,D3 和 vticker 仅绑定到它们各自的 div。这让我相信 html/js 没有按正确的顺序加载。所以当它第一次加载时,没有 div 可以绑定到它。

此外,在替换的内容中,我有一个内部 ajax 查询,它根据单击的 d3 工具提示更新新闻代码,替换内容后,代码 ajax 查询不再工作,我得到:

GET http://localhost:3000/render_bubble_partial?data=The+Environment 404 (Not Found)

这很奇怪,因为它以前有效,我有路线设置:

bubbles_render_bubble_partial GET /bubbles/render_bubble_partial(.:format) bubbles#render_bubble_partial
bubbles_render_poll_partial   GET /bubbles/render_poll_partial(.:format)   bubbles#render_poll_partial
bubbles_render_bubble_content GET /bubbles/render_bubble_content(.:format) bubbles#render_bubble_content

来自菜单部分的 li:

<li id='panel-3'><%= link_to image_tag('keyBubble.png'), bubbles_render_bubble_content_path, :remote => true %></li>

我正在渲染的部分内容:

<div class="col span_5_of_7">
    <section id="infographic">
        <div id ="infographicContent">
            <input id="slider" style="position:inherit;top:4px;" type="range" min="0" max="62" value="0"> </input>
            <div id="tooltip">
            </div>
            <%= javascript_include_tag "http://d3js.org/d3.v3.min.js" %>
            <%= javascript_include_tag "bubbles", "vticker" %>
            <script>
                $('.col.span_5_of_7').click(function(){
                      var text = $("#tooltip b").text();
                        if(text == ""){text = null}
                        var params = {data:text};
                        console.log(params)
                        $.ajax({
                          url: "render_bubble_partial",
                          data: params, 
                          success: function(result) {
                               console.log("finished ajax callback");
                          }
                        });
              });
            </script>   
        </div>
    </section>  
</div>
<div class="col span_1_of_7">
    <section id="feed">
        <div id ="infoFeed">
            <ul style="font: 10px sans-serif;text-align: justify;">
                <% bubble_query(nil) %>
                <% @bubble_story.each do |story| %>
                    <li style="border-style:solid;border-top:thick double #000;">
                        <p><h4 style="text-align:left;"><%= link_to story.title, story.url, :target => "_blank" %>
                            </h4> <%= story.description %> <h7><br /><br /><%= story.source %><br /><%= story.date.to_date %><%= story.issue %></h7></p>
                    </li>
                <% end %>
            </ul>
        </div>
    </section>
    <script> $(function() { $('#infoFeed').vTicker();});</script>
</div>

我不确定如何解决这个问题......有人可以提供一些建议吗?

4

2 回答 2

0

您是否正在调用 ajax 以从本身由 ajax 更新的部分中重新加载部分?如果是这样,请尝试将其移出。您可以尝试将您的 javascript 移动到应用程序布局或 application.js 文件。

于 2013-10-30T13:37:35.393 回答
0

但是在部分布局和应用程序布局之间移动 javascript_include_tags,我能够使其正确加载。

于 2013-10-30T22:43:43.027 回答