0

我正在使用 curl 手动测试 Rails 3 的 Api 创建操作,但我不断收到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

我在这里想念什么?先感谢您。

4

1 回答 1

1

根据 MassAssignmentSecurity 错误,您似乎只需要使您的模型上的 product_name 字段可访问:

class Product < ActiveRecord::Base
  attr_accessible :product_name
  #... other code...
end
于 2012-11-20T22:39:20.720 回答