1
是否可以通過程序設置背景圖像?從db設置背景圖像
我知道如何使用CSS來完成,但是這設置和修復了背景圖片。我有一本書的模型,每本書都有一本書的圖像,我想在用戶提取書記錄時將背景設置爲書的圖像。
def show
@book = Book.find(params[:id])
@image = @book.image
# set the background image to @image
end