创建对象后重定向到编辑页面的项目 ruby
redirect to an item of edit page after creating object ruby
我需要重定向到我的编辑页面中的特定项目,我使用重定向到但我无法添加#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'
尝试类似的东西,
redirect_to edit_song_path(@song, :anchor => "tablineT_18_5")
另外,看看这个 post
我需要重定向到我的编辑页面中的特定项目,我使用重定向到但我无法添加#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'
尝试类似的东西,
redirect_to edit_song_path(@song, :anchor => "tablineT_18_5")
另外,看看这个 post