0

我正在尝试传入一些实例变量来调用具有该特定对象属性的 API。用户填写他们的汽车详细信息(品牌、型号和年份),从而创建一个报价对象。这应该被传递到 Edmund 的 API 以检索该车的信息。如果我用特定的品牌/型号/年份设置代码,代码可以正常工作,但我不能让它返回创建的报价对象的信息。

这是我的控制器:

def show
@offer = Offer.find(params[:id])
@wanted_ad = WantedAd.find(params[:wanted_ad_id])
@make = @offer.ownermake
@model = @offer.ownermodel
@year = @offer.owneryear

respond_to do |format|
  format.html # show.html.erb
  format.json { render json: @offer }
end
end

这是我的模型:

class Offer < ActiveRecord::Base
    attr_accessible :user_id, :wanted_ad_id, :estvalue, :image1, :offerprice, :ownercartype, :ownerdesc, :ownermake, :ownermileage, :ownermodel, :owneryear
    belongs_to :user
    belongs_to :wanted_ad
    has_one :car

    def self.carsearch
        @car = []


        carinfo = HTTParty.get("http://api.edmunds.com/v1/api/vehicle/#{make}/#{model}/#{year}?api_key=qd4n48eua7r2e59hbdte5xd6&fmt=json")
        carinfo["modelYearHolder"].each do |p|
            c = Car.new
            c.make = p["makeName"]


            return carinfo
    end 
    end
end

我的车型很简单:

class Car < ActiveRecord::Base   
  attr_accessible :make, :model, :year 

  belongs_to :offer  
end

我试图从一个视图文件中调用它<%= Offer.carsearch %>。我可能有点搞砸了,但这是我第一次使用 API,我很迷茫。

4

1 回答 1

0

我认为您的carsearch方法中有几个逻辑错误:您正在获取汽车信息,遍历数组,实例化一辆新车,但c对象没有任何反应,并且在第一次迭代结束时,您退出了返回检索到的整个函数carinfo。 ..

这可能是你的意思吗?

def carsearch
    @cars = []

    # where do `make`, `model` and `year` come from here?
    # probably method parameters!?
    carinfo = HTTParty.get("http://api.edmunds.com/v1/api/vehicle/#{make}/#{model}/#{year}?api_key=qd4n48eua7r2e59hbdte5xd6&fmt=json")
    carinfo["modelYearHolder"].each do |p|
        c = Car.new
        c.make = p["makeName"]
        # initialize other attributes (year, model)?
        @cars << c
    end


    return @cars
end
于 2013-04-21T23:18:55.810 回答