我需要重定向到我的编辑页面中的特定项目,我使用重定向但我无法添加#tab_id 这是我的源代码:
if @song.save
flash[:notice] = I18n.t('message.success')
#render action: 'edit'
redirect_to edit_song_path(@song.id)#tablineT_18_5
tab_id的名称为:'#tablineT_18_5'
答案 0 :(得分:0)
尝试类似的事情,
redirect_to edit_song_path(@song, :anchor => "tablineT_18_5")