rails_admin 中的 show_in_app 动作有什么用?
what is the use of show_in_app action in rails_admin?
我刚开始使用 rails_admin 作为管理面板。我在 config/initializers/rails_admin.rb
中有一些代码
config.actions do
dashboard # mandatory
index # mandatory
new
export
bulk_delete
show
edit
delete
show_in_app # what is the use of this action?
## With an audit adapter, you can add:
# history_index
# history_show
end
我开始知道除了show_in_app
动作之外的上述动作有什么用。我已经完成了谷歌搜索,但我到处都发现它是代码。我找不到任何详细描述的文件。你能解释一下这个动作的用途吗?我已经检查了 commenting
和 un-commenting
该行,但在 localhost:3000/admin/
UI.
中没有发现差异
已检查:
Show in app
是一个节目 link 在前端打开您在后台列出或编辑的项目,它通常在项目旁边的操作中有一个眼睛图标。
当你点击这个按钮时,它会将你重定向到项目在前端的显示路径
我刚开始使用 rails_admin 作为管理面板。我在 config/initializers/rails_admin.rb
中有一些代码config.actions do
dashboard # mandatory
index # mandatory
new
export
bulk_delete
show
edit
delete
show_in_app # what is the use of this action?
## With an audit adapter, you can add:
# history_index
# history_show
end
我开始知道除了show_in_app
动作之外的上述动作有什么用。我已经完成了谷歌搜索,但我到处都发现它是代码。我找不到任何详细描述的文件。你能解释一下这个动作的用途吗?我已经检查了 commenting
和 un-commenting
该行,但在 localhost:3000/admin/
UI.
已检查:
Show in app
是一个节目 link 在前端打开您在后台列出或编辑的项目,它通常在项目旁边的操作中有一个眼睛图标。
当你点击这个按钮时,它会将你重定向到项目在前端的显示路径