admin管理员组文章数量:1345179
I am using node js with express and Mongo. I have a simple program that takes in user settings through radio buttons. I have a submit button but I do not know how to make it work from there. Do I need a new JS file to send it to mongodb? All I want is for my html to save the preferences and store them to the database. What steps do I start going in?
Example here: if I clicked male and hit submit, I would want the word male to save to the database.
<html>
<body>
<form action="">
<input type="radio" name="sex" value="male">Male<br>
<input type="radio" name="sex" value="female">Female
</form>
</body>
</html>
I am using node js with express and Mongo. I have a simple program that takes in user settings through radio buttons. I have a submit button but I do not know how to make it work from there. Do I need a new JS file to send it to mongodb? All I want is for my html to save the preferences and store them to the database. What steps do I start going in?
Example here: if I clicked male and hit submit, I would want the word male to save to the database.
<html>
<body>
<form action="">
<input type="radio" name="sex" value="male">Male<br>
<input type="radio" name="sex" value="female">Female
</form>
</body>
</html>
Share
Improve this question
edited Apr 19, 2020 at 21:39
Tshilidzi Mudau
7,9096 gold badges39 silver badges51 bronze badges
asked May 14, 2014 at 17:16
user3579901user3579901
811 gold badge2 silver badges6 bronze badges
1
- 1 Where is your server-side code that is handling the POST? Or... is that what your question is? – Brad Commented May 14, 2014 at 17:50
2 Answers
Reset to default 4First you want to send a http post to node js.
This will show you how to do that. How to retrieve POST query parameters?
Then you need to take that info and parse it and then send it to Mongo.
This will show you how to do an insert using Nodejs Mongo Driver. http://mongodb.github.io/node-mongodb-native/markdown-docs/insert.html
- create server.
- send http req.
- connect to mongodb.
- insert data in mongodb
本文标签: javascriptHow do i send data from html to mongodbStack Overflow
版权声明:本文标题:javascript - How do i send data from html to mongodb? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766409a2535308.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论