Rails create database entry by GET?

发布于 2022-09-06 08:33:31 字数 125 浏览 13 评论 0

is it possible to create a database entry (create method) by a GET request instead of POST?

thanks in advance.

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

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

发布评论

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

评论(2

跨年 2022-09-13 08:33:31

Now I have some more details, here is some answer. If you'll receive this kind of request:

your_route?price=123&name=abc

Make a route like:

match 'your_route/:price/:name' => 'your_controller#your_method'

If ever you've optional params, use brackets.

in your controller, you'll get the params. Given you have a Product model with columns price and name, proceed as follows to save it:

@product = Product.new({:price => params[:price]), :name => params[:name]})
@product.save
千仐 2022-09-13 08:33:31

What you do in response to a GET request is entirely up to you. Of course, multiple GET requests with the same parameters could potentially create multiple records, which might not be what you want. Browsers will resend GET requests but will normally prompt the user to resent POST requests.

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