铁路协会帮助

发布于 2024-12-07 12:51:29 字数 224 浏览 0 评论 0原文

嘿,我做了一个名为图片的脚手架,但现在我需要它有很多标签。 我希望它是这样的,以便您可以执行类似单击“添加标签”然后填写标签,然后单击“添加标签...”之类的操作,这将在图片/新建中进行编辑,也许还会显示。 我不知道如何做到这一点,而且我对 Rails 不太了解,所以如果可以的话,请说清楚。 (也许 Rails 中有一些东西,比如一个按钮,如果你点击它,你就会执行一个函数,即使这样我也不知道如何去做) 我正在使用 Rails 3。

Hey I made a scaffold called pictures, but now I need to it to have many tags.
I want it to be so that you can do something like click add tag then fill in a tag, then click add tag ..., this would be in pictures/new and edit, and maybe show.
I don't have a clue how to do this and I am not that great in rails, so be very clear if you can. (maybe there is something in rails like a button that if you click it you execute a function, even then I'm not sure how to go about this)
I am using rails 3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜巴黎 2024-12-14 12:51:29

Kevin,

我认为第一个任务是在这里阅读 Rails ActiveRecord 关联:

http://guides.rubyonrails。 org/association_basics.html

一旦你有了正确的关联,我就会在你的路由文件中将标签作为图片的子资源。这将允许您使用 /pictures/{id}/tags 等路由对 :tags 进行 POST

Kevin,

I think task number one is to read up on Rails ActiveRecord associations here:

http://guides.rubyonrails.org/association_basics.html

Once you have your associations right, I would make tags a sub-resource of pictures in your routes file. This would allow you to do a POST to :tags with a route like /pictures/{id}/tags

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文