如何创建 URL 以在 Padrino 中的应用程序之间进行链接?
我有一个名为“api”的单独应用程序,我想从我的管理应用程序链接到它。但如果我做一个像这样的链接:
%td=button_to "API", url("/api/users", :attributes, :id => user.id),
:method => :get, :class => :button_to
它带我到/admin/api/users,我想转到api/users/attributes。
I have a separate app called "api" that I'd like to link to from my admin app. But if I do a link like:
%td=button_to "API", url("/api/users", :attributes, :id => user.id),
:method => :get, :class => :button_to
It takes me to /admin/api/users, I want to go to api/users/attributes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定我是否理解,但如果您在 App2 中并且想要呈现来自另一个应用程序的链接,您可以:
Api.url(:users, :attributes, :id => user.id)
Not sure if I understand but if you are in App2 and you want to render a link from another app you can:
Api.url(:users, :attributes, :id => user.id)