0
我在videos_controller.rb這兩個函數用於創建和更新RoR中的視頻
# POST /videos
# POST /videos.json
def create
@video = Video.new(video_params)
respond_to do |format|
if @video.save
format.html { redirect_to @video, notice: 'Video successfully created.' }
format.json { render :show, status: :created, location: @video }
else
format.html { render :new }
format.json { render json: @video.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /videos/1
# PATCH/PUT /videos/1.json
def update
respond_to do |format|
if @video.update(video_params)
format.html { redirect_to @video, notice: 'Video successfully updated.' }
format.json { render :show, status: :ok, location: @video }
else
format.html { render :edit }
format.json { render json: @video.errors, status: :unprocessable_entity }
end
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_video
@video = Video.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def video_params
params.require(:video).permit(:title, :file)
end
end
的問題是每當它上傳,它會創建一個路徑中的新文件夾是uploads/video/file/{id} /文件名。
要求 我想路徑是靜態的,因爲只會有一個視頻,所以我想視頻名稱和路徑保持不變,即使它被更新,即新的文件(如編輯)放置或由舊文件路徑中的舊文件名保存。
我該怎麼辦?
您用於管理上傳的庫區是什麼? – cnnr