Node.jsでデータベース検索
データベースから必要な情報を検索する。
データベースはsqlite3を使用。
hello.js
router.post('/find',(req,res,next) => {
var find = req.body.find;
db.serialize(() => {
var q = "select * from データベース名 where";
db.all(q + find,[],(err,rows) => {
if(!err){
var data = {
title: 'Hello/find',
find:find,
content:'検索条件' + find,
mydata: rows
}
res.render('hello/find',data);
}
});
});
});
後はhtmlに以下のコードをbodyに入力して完成させる。
find.ejs
<div role="main">
<p><%= content %></p>
<form method="post" action="/hello/find">
<div class="form-group">
<label for="find">FIND</label>
<input type="text" name="find" id="find"
class="form-control" value="<%=find %>">
</div>
<input type="submit" value="更新"
class="btn btn-primary">
</form>
<table class="table mt-4">
<% for(var i in "データベース名") { %>
<tr>
<% var obj = "データベース名"[i]; %>
<th><%= obj.id %></th>
<td><%= obj.name %></td>
<td><%= obj.mail %></td>
<td><%= obj.age %></td>
</tr>
<% } %>
</table>
</div>
Author And Source
この問題について(Node.jsでデータベース検索), 我々は、より多くの情報をここで見つけました https://qiita.com/H_Ryuta/items/ed95a10dada912651a0f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .