⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 item_controller.rb

📁 基于ruby的进阶编程,大家可以对照教材<<Ruby on Rails快速Web应用开发实战>>,效果会更好
💻 RB
字号:
class ItemController < ApplicationController
	scaffold :item
	def create
		@item = Item.new(@params['item'])
		@item.date = Date.today
		if @item.save
			redirect_to :action =>'list'
		else
			render_action 'new'
		end
	end
	
	def new
		@items = Item.new
		@categories = Category.find_all
	end
	
	def list
		@items = Item.find_all
	end
	
	def edit
		@item = Item.find(@params["id"])
		@categories = Category.find_all
	endend

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -