0

好的,所以我昨天刚拿起 ruby​​。我制作的应用程序跟踪推文并将它们存储在一个数组中,应该输出到网页,但我不知道正确的语法

输出只是在终端中运行。html

<h1>Posts#index</h1>
<p>Find me in app/views/posts/index.html.erb</p>
<%= @a %>

红宝石

class PostsController < ApplicationController
  TWITTER_COMSUMER_KEY = ""
  TWITTER_CONSUMER_SECRET = ""
  TWITTER_OATH_TOKEN = ""
  TWITTER_OATH_TOKEN_SECRET = ""
  def index
    @a = Array.new(500)

    TweetStream.configure do |config|
       config.consumer_key = TWITTER_COMSUMER_KEY
       config.consumer_secret = TWITTER_CONSUMER_SECRET
       config.oauth_token = TWITTER_OATH_TOKEN
       config.oauth_token_secret = TWITTER_OATH_TOKEN_SECRET
     end
     i = 0
     TweetStream.track('weed') do |status|

     temp = status.text

     if(temp.include? "http")
          a[i] = status.text
          puts "#{status.text}"
          i = i+1
          end
       end
    end
end
4

1 回答 1

1

我会做很多不同的事情,但是使用您的代码:

改变a[i]你的观点@a[i]...

你可以这样做:

<% @a.each do |tweet| %>
  <div class="tweet">
    <%= tweet %>
  </div>
<% end %>

并适当地设计风格<div>。或者使用<ul><li>如果它更适合你。

于 2013-03-10T07:36:03.500 回答