使用curl返回状态代码500测试创建资源

时间:2012-11-20 21:57:58

标签: ruby-on-rails ruby-on-rails-3 rest curl

我手动测试Api for Rails 3使用curl创建动作但我不断获得Internal server error(500)。我有一个产品型号,这是我的控制器中的创建动作和我尝试过的命令....

#command
curl -i -H "Accept: application/json"  -X POST -d "product[product_name]=dvd"  http://localhost:3000/api/products  

#controller
module Api  
  class ProductsController < ApplicationController
    respond_to :json

     def create
       @product = Product.new(params[:product])
       respond_to do |format|
         if @product.save
           format.html { redirect_to @product, notice: 'Product was successfully created.' }
           format.json { render json: @product, status: :created, location: @product }
         else
           format.html { render action: "new" }
           format.json { render json: @product.errors, status: :unprocessable_entity }
         end
       end
     end
   end
 end

我在这里缺少什么?提前谢谢。

1 个答案:

答案 0 :(得分:1)

根据MassAssignmentSecurity错误,您只需要在模型上访问product_name字段:

class Product < ActiveRecord::Base
  attr_accessible :product_name
  #... other code...
end