Ruby Rails ActiveResource 没有正确保存资源模型

Ruby on Rails ActiveResource not saving resource model properly

ruby 2.3.0p0(2015-12-25 修订版 53290)[x86_64-linux],

Rails 4.2.5

我有两个项目。从第一个项目,我通过 api.

将数据导入第二个项目

第一个项目中的用户模型:

class User < ActiveRecord::Base
 has_many :cars
end

第一个项目中的汽车模型:

class Car < ActiveRecord::Base
  belongs_to :user
end

第二个项目中的汽车模型(远程):

class Car < ActiveResource::Base
   self.site  = 'https://myeasyb-vssram.c9users.io'
   self.format = :json
end

Gpstablecontroller(第二个项目):

  class GpstablesController < ApplicationController
  before_action :set_gpstable, only: [:show, :edit, :update, :destroy]

  # GET /gpstables
  # GET /gpstables.json
  def index
    @gpstables = Gpstable.all
  end

  # GET /gpstables/1
  # GET /gpstables/1.json
  def show
  end

  # GET /gpstables/new
  def new
    @gpstable = Gpstable.new
    @gpstables = Gpstable.all
  end

  # GET /gpstables/1/edit
  def edit
     @gpstables = Gpstable.all
  end

  # POST /gpstables
  # POST /gpstables.json
  def create
    @cars = Car.all
    @gpstable = Gpstable.new(gpstable_params)
     @cars.each do |car|
      if @gpstable.car_id == car.id
        @car = car 
      end
    end

     @car.update_attribute(:gpss,  @gpstable.device_id)

    respond_to do |format|
      if @gpstable.save
        format.html { redirect_to gpstables_url, notice: 'Gpstable was successfully created.' }
        format.json { render :show, status: :created, location: @gpstable }
      else
        format.html { render :new }
        format.json { render json: @gpstable.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /gpstables/1
  # PATCH/PUT /gpstables/1.json
  def update
    respond_to do |format|
      if @gpstable.update(gpstable_params)
        Car.all.each do |car|
          if @gpstable.car_id == car.id.to_json
            @car = car
          end

          if @gpstable.device_id == car.gpss
            car.gpss = 0
            car.save!
          end

         end
        @car.gpss = @gpstable.device_id

        @car.save!
        format.html { redirect_to @gpstable, notice: 'Gpstable was successfully updated.' }
        format.json { render :show, status: :ok, location: @gpstable }
      else
        format.html { render :edit }
        format.json { render json: @gpstable.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /gpstables/1
  # DELETE /gpstables/1.json
  def destroy

     @cars.each do |car|
     if @gpstable.device_id == car.gpss
            car.gpss = 0
            car.user_id = @gpstable.user_id
            car.save
     end
     end
     @gpstable.destroy

    respond_to do |format|
      format.html { redirect_to gpstables_url, notice: 'Gpstable was successfully destroyed.' }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_gpstable
      @gpstable = Gpstable.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def gpstable_params
      params.require(:gpstable).permit(:device_id, :car_id, :user_id)
    end
end

创建 gpstable 记录时,我想更新 car 模型的 Gpss 属性(远程,通过 api 调用)。

正在更新 gpss attribute.But 正在更改所有外键,包括 user_id 属性 car model.

using devise for users in 1st project.

问题是我在 car_params 中给当前的 user_id user_id。所以我无法通过资源模型对其进行编辑。所以我改变了这个来创造行动。 在我的第一个应用程序中,我有汽车控制器:

  def car_params
      params.require(:car).permit(:name, :model, :colour, :ac, :gpss, :wifi, :luggage, :cfare, :card, :crfare, :no, :nos, :user_id, {carpicss: []} ).**merge(user: :current_user)**
    end

我从上面的代码中删除了 .merge(user: :current_user)

并在创建操作中添加了这个

  def create
     @car = Car.new(car_params)
     @car.card=" #{@car.name} : #{@car.no}"
     @car.user_id=current_user.id   #added here to save current user_id 
    respond_to do |format|
      if @car.save
        format.html { redirect_to cars_path, notice: 'Car was successfully created.' }
        format.json { render :show, status: :created, location: cars_path }
      else
        format.html { render :new }
        format.json { render json: @car.errors, status: :unprocessable_entity }
      end
      @car.reload
    end
  end