如何使用 React.js 不连接到本地 MySQL 数据库 (PHPMyAdmin)?

How to connect not to local MySQL db (PHPMyAdmin) by using React.js?

我是 Node.js 的新手,我已将现有数据库上传到 Dreamhost,其中有数据库 PhpMyAdmin。我创建了新的 React 应用程序,并通过使用我的服务器文件夹尝试连接到该数据库。我正在使用 Windows 10,我 运行 在 http://127.0.0.1:5000/。这是我的代码:

const express = require("express");
const bodyParser = require("body-parser");
const mysql = require("mysql");

const app = express()
const port = process.env.PORT || 5000

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

// MySQL

const pool = mysql.createPool({
    connectionLimit: 10,
    user: "root",
    host: '127.0.0.1',
    password: "password",
    database: "testdb_org"
})

// Get all info

app.get('/', (req, res) => {
    pool.getConnection((err, connection) => {
        
    res.send('TEST '+ JSON.stringify(err))
        /*if (err) throw err
        console.log(`Connected as id ${connection.threadId}`)

        connection.query('SELECT * from users', (err, rows) => {
            connection.release() // Return the connection to pool

            if (!err) {
                res.send(rows)
            } else {
                console.log(err)
            }
        })*/
    })
})

app.listen(port, () => console.log(`Listen on port ${port}`))

res.send 给我以下错误:

{"code":"ER_ACCESS_DENIED_ERROR","errno":1045,"sqlMessage":"Access denied for user 'root'@'localhost' (using password: YES)","sqlState":"28000","fatal":true}

当我打开注释括号时,出现以下控制台错误:

if (err) throw err
                 ^

Error: connect ECONNREFUSED 127.0.0.1:3306
    at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16)
    --------------------
    at Protocol._enqueue (C:\Users\*\Documents\project\server\node_modules\mysql\lib\protocol\Protocol.js:144:48)
    at Protocol.handshake (C:\Users\*\Documents\project\server\node_modules\mysql\lib\protocol\Protocol.js:51:23)
    at PoolConnection.connect (C:\Users\*\Documents\project\server\node_modules\mysql\lib\Connection.js:116:18)
    at Pool.getConnection (C:\Users\*\Documents\project\server\node_modules\mysql\lib\Pool.js:48:16)
    at C:\Users\*\Documents\project\server\app.js:24:10
    at Layer.handle [as handle_request] (C:\Users\*\Documents\project\server\node_modules\express\lib\router\layer.js:95:5)
    at next (C:\Users\*\Documents\project\server\node_modules\express\lib\router\route.js:144:13)
    at Route.dispatch (C:\Users\*\Documents\project\server\node_modules\express\lib\router\route.js:114:3)
    at Layer.handle [as handle_request] (C:\Users\*\Documents\project\server\node_modules\express\lib\router\layer.js:95:5)
    at C:\Users\*\Documents\project\server\node_modules\express\lib\router\index.js:284:15 {
  errno: -4078,
  code: 'ECONNREFUSED',
  syscall: 'connect',
  address: '127.0.0.1',
  port: 3306,
  fatal: true
}

好的,React.js的在线数据库和本地主机无法使用的问题。对于连接,我必须下载 .sql 数据库,使用 XAMPP 控制面板在本地插入和 运行 它。