带有单独搜索屏幕的 Restful URL

发布于 2024-11-15 12:53:53 字数 125 浏览 1 评论 0原文

我们正在考虑让我们的 URL 方案变得更加平静,并且在大多数情况下这对我们来说是有意义的。我们找不到很好的例子的一件事是如何处理单独的搜索屏幕?我们需要向用户显示卡片列表,但他们始终需要先进行搜索。

有什么想法或例子吗?

We're looking at going a little more restful in our URL scheme and for the most part it make sense to us. The one thing we can't find a good example of is how do you handle a separate search screen? We need to show a list of cards to the user but they always need to do a search first.

Any ideas or examples out there?

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

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

发布评论

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

评论(2

千秋岁 2024-11-22 12:53:53

您可以将搜索视为 RESTful 资源...

Ryan Bates 在此解释了该模式:http:// railscasts.com/episodes/111-advanced-search-form

这符合要求吗?

You can treat Search as RESTful resource ...

Ryan Bates explains the pattern here: http://railscasts.com/episodes/111-advanced-search-form

This fit the bill?

熟人话多 2024-11-22 12:53:53

我会在我的模型类中设置一个范围来执行您想要的搜索;只需将 lambda 添加到范围中,以便您可以传递搜索词,应该看起来像这样:

scope :matching_attribute, lambda{|your_search_term| where(:model_attribute => your_search_term)}

然后在控制器的索引中,只需检查请求参数(无论您命名它)并在那里执行适当的操作

I'd set up a scope in in my model class that does the search you want; just add a lambda to the scope so you can pass in the search term, should look something like this:

scope :matching_attribute, lambda{|your_search_term| where(:model_attribute => your_search_term)}

and then in your controller's index, just check for the request param (whatever you're naming it) and do the appropriate thing there

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