0

在我的 Rails 应用程序的最终视图中,我需要显示数百条记录。当我看到我的输出时,我看到它逐渐向中心滑动,然后完全向右滑动。我试过左对齐,但它不起作用。

<%= will_paginate @tweets %>
<% @tweets.each do |tweets| %>
<ul>
  <li><%= tweets.id %></li>
  <li><%= tweets.tweet_created_at %></li>
  <li><%= tweets.tweet_text %></li>
  <li><%= tweets.user_id %></li>
  <li><%= tweets.user_name %></li>      
  <li><%= tweets.user_loc %></li>
  <li><%= tweets.user_img %></li>
  <li><%= tweets.longitude %></li>
  <li><%= tweets.latitude %></li>
  <li><%= tweets.place %></li>
  <li><%= tweets.country %></li>
<% end %>
</ul>

当我需要显示大量记录时,它会完全滑到屏幕的右端。如何解决这个问题?

4

1 回答 1

1

I think it should be either one from below two options.
UL tag is not being ended properly.

option 1 :

<%= will_paginate @tweets %>
<% @tweets.each do |tweets| %>
<ul>
  <li><%= tweets.id %></li>
  <li><%= tweets.tweet_created_at %></li>
  <li><%= tweets.tweet_text %></li>
  <li><%= tweets.user_id %></li>
  <li><%= tweets.user_name %></li>      
  <li><%= tweets.user_loc %></li>
  <li><%= tweets.user_img %></li>
  <li><%= tweets.longitude %></li>
  <li><%= tweets.latitude %></li>
  <li><%= tweets.place %></li>
  <li><%= tweets.country %></li>
</ul>
<% end %>

or Option 2

 <%= will_paginate @tweets %>
    <ul>
    <% @tweets.each do |tweets| %>
      <li><%= tweets.id %></li>
      <li><%= tweets.tweet_created_at %></li>
      <li><%= tweets.tweet_text %></li>
      <li><%= tweets.user_id %></li>
      <li><%= tweets.user_name %></li>      
      <li><%= tweets.user_loc %></li>
      <li><%= tweets.user_img %></li>
      <li><%= tweets.longitude %></li>
      <li><%= tweets.latitude %></li>
      <li><%= tweets.place %></li>
      <li><%= tweets.country %></li>
    <% end %>
    </ul>
于 2013-08-23T06:15:24.423 回答