Rails create database entry by GET?
is it possible to create a database entry (create method) by a GET request instead of POST?
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Now I have some more details, here is some answer. If you'll receive this kind of request:
Make a route like:
If ever you've optional params, use brackets.
in your controller, you'll get the params. Given you have a
Product
model with columnsprice
andname
, proceed as follows to save it: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.