当前位置: 首页 > 工具软件 > Rails > 使用案例 >

Rails CRUD

孔欣可
2023-12-01
  1.   def create
        @product = Product.new(params[:product])
        if @product.save
          flash[:notice] = 'Product was successfully created.'
          redirect_to :action => 'list'
        else
          render :action => 'new'
        end
      end
  2.   
  3. def update
  4.     @product = Product.find(params[:id])
  5.     if @product.update_attributes(params[:product])
  6.       flash[:notice] = 'Product was successfully updated.'
  7.       redirect_to :action => 'show', :id => @product
  8.     else
  9.       render :action => 'edit'
  10.     end
  11.   end
  12.   def destroy
  13.     Product.find(params[:id]).destroy
  14.     redirect_to :action => 'list'
  15.   end
 类似资料:

相关阅读

相关文章

相关问答