前提
nodeでホームページを作ろうと頑張っています。htmlで特定のボタンをクリックしたらどのボタンが押されたかを識別し、nodeでデータベース操作をし、出力したいと思っています。
実現したいこと
押されたボタンの通りnodeでデータベース操作をし、その値を返す
発生している問題・エラーメッセージ
ボタンの実装はできたのですが、そのボタンの識別とデーターベース操作ができません。
該当のソースコード
html
<!DOCTYPE html><html lang="ja"><head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <title>sample</title></head><body> <input id="textvalue" type="text"><br> <input id="getbutton" type="submit" value="取得(GET)"><script>$(function(){ document.getElementById("getbutton").addEventListener("click", () => { $.ajax({ async: false, url: 'http://localhost:9000', type: 'post', data:{"id": "getbutton"}, dataType: 'json' }).done(function(res){ console.debug(res); }).fail(function(xhr, status, error){ alert(status); }); },'false');}); </script></body></html>
js
//データベースconst mysql = require('mysql');var express = require('express');var app = express();const connection = mysql.createConnection({ host: 'localhost', user: 'root', password: '', port: 3306, database: 'testdb'}); // 接続connection.connect((error) => { if(error){ console.log('error connecting: ' + err.stack); return; } console.log('success');}); //ajaxvar bodyParser = require('body-parser'); app.use(bodyParser.urlencoded({extended: false}));app.use(bodyParser.json());app.use(function(req, res, next){ res.header("Access-Control-Allow-Origin","*"); res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); next();})app.post('/',function(req, res){ // var obj = {}; // console.log('body: ' + JSON.stringify(req.body.name)); // var rejson = JSON.stringify(req.body); // res.send(rejson); if(JSON.stringify(req.body.id) == "getbutton"){ //select文 app.get('/', function(req, res){ connection.query( "SELECT * FROM t01_users;", (error,results) => { if(error){ console.log('error connecting: ' + error.stack); return; } console.log(results); console.log(results[0].password); } ); res.send(JSON.stringify(results)); }); }});// 接続終了connection.end(); app.listen(9000);
0 コメント