无法进入节点Js

问题描述 投票:0回答:2

我是Node js的新手,并创建了一个简单的应用程序来查询存储在数据库(MySql)中的数据。所以我正在做的是,我创建了一个名为stock的数据库,并使用index.html查询该数据库以将其显示在get.html,但是执行get请求后,我无法获得结果。这是我的app.js

const express=require('express');
const app=express();
const port= 5050;
const bodyParser=require("body-parser");

app.use(bodyParser.urlencoded({extended:false}));

app.get('/',(req,res)=>res.sendFile(__dirname + '/index.html'));

app.post('/get',function(req,res){
const mysql=require('mysql');


const con=mysql.createConnection({
    host:"localhost",
    user:"root",
    password:"abc123",
    database:"abc",
});

con.connect(function(err){
    if(err) throw err;
    console.log("Connected");
    let sqlQuery='SELECT * FROM stock';
con.query(sqlQuery,(err,rows)=>{
    if(err) throw err;
    console.log('Data Received:-');
    console.log(rows);


        });
    });
});
app.listen(port);

我的Index.html:-

<!DOCTYPE html>
<html>
<head>
    <title>My node js app</title>
</head>
<body>
    <form action="/get" method="get">
        <h1>Welcome to Stock manipulation</h1><br></br>
        Select option<select>
        <option value=0>Get</option></select>
        <input type="submit" id="query" value="get Result">
</body>
</html>

和我的get.html

<!DOCTYPE html>
<html>
<head>
    <title>Get</title>
</head>
<body>

</body>
</html>

这是存储在数据库中的数据

[ RowDataPacket { id: 1, type: 'BSE' },
  RowDataPacket { id: 2, type: 'NSE' } ]

提交请求后出现的错误是enter image description here

node.js express post get
2个回答
0
投票

更改

<form action="/get" method="get">

to

<form action="/get" method="post">

如已定义/get路线(app.post('/get',function(req,res){/*..*/})

仅接受post个请求


0
投票

您的nodejs服务器在说什么?在您的路线中,您通常希望返回一些数据。例如,在您的情况下,您的/ get路由res.send(data)。这样您的前端就可以显示收到的数据。看起来您还需要将表单更改为帖子而不是获取信息(编辑:如Nikos M.所述)。

如果您不熟悉HTTP请求,建议您下载Postman,以习惯于测试您的路由请求。

© www.soinside.com 2019 - 2024. All rights reserved.