0
upload_controller
def create
file = @upload.file
content = File.read file
params['content'] = content
end
end
這裏params['content']
有適當的文件內容。如何在控制器中添加屬性到rails params並傳遞到不同的控制器
book_controller
def create
@book.description = params['content']
@book.save
end
end
但params['content']
在book_controller.rb
回報nil
如何傳遞從上傳內容控制器預訂控制器?
是您重定向到從upload_controller的「創造」法書控制器 – power