- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是一个node.js和MySQL初学者,我刚刚开始设置并尝试一些基本代码。当我按照本教程练习“https://medium.com/@ekkodo/node-js-restful-web-api-%E7%AF%84%E4%BE%8B-for-mysql-d8be860594c1”时,它在终端上显示“TypeError:无法读取未定义的属性'主机'”错误,并且无法连接到MySQL。
(程序中的“Product”是我数据库中的表名)
这是我的终端上显示的错误
PS C:\Users\CJSCOPE\Desktop\nodetest\webapi> node app.js
C:\Users\CJSCOPE\Desktop\nodetest\webapi\node_modules\mysql\lib\ConnectionConfig.js:12
this.host = options.host || 'localhost';
^
TypeError: Cannot read property 'host' of undefined
at new ConnectionConfig (C:\Users\CJSCOPE\Desktop\nodetest\webapi\node_modules\mysql\lib\ConnectionConfig.js:12:37)
at Object.createConnection (C:\Users\CJSCOPE\Desktop\nodetest\webapi\node_modules\mysql\index.js:13:34)
at Object.<anonymous> (C:\Users\CJSCOPE\Desktop\nodetest\webapi\models\product.js:4:24)
at Module._compile (internal/modules/cjs/loader.js:1128:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1167:10)
at Module.load (internal/modules/cjs/loader.js:983:32)
at Function.Module._load (internal/modules/cjs/loader.js:891:14)
at Module.require (internal/modules/cjs/loader.js:1023:19)
at require (internal/modules/cjs/helpers.js:72:18)
at Object.<anonymous> (C:\Users\CJSCOPE\Desktop\nodetest\webapi\routes\product.js:2:15)
app.js
var bodyparser = require('body-parser');
var express = require('express');
var config = require('./config');
var functions = require('./function');
var product =require('./routes/product');
var app=express();
req.body
app.use(bodyparser.urlencoded({ extended:false }));
app.use(bodyparser.json());
app.use(functions.passwordCrypto);
app.use('./product',product);
app.listen(config.port, function(){
console.log('app listening on port'+ config.port + '!');
});
product.js(模型)
var mysql =require('mysql');
var config =require('../config');
var connection = mysql.createConnection(config.db);
var sql = '';
module.exports = {
item:function(req,callback){
sql = 'SELECT * FROM product';
return connection.query(sql,callback);
},
item:function(req,callback){
sql = mysql.format('SELECT * FROM product WHERE id= ?',[req.params.id]);
return connection.query(sql,callback);
},
add:function(req,callback){
console.log('req.body',req.body);
sql = mysql.format('INSERT INTO product SET ?',req.body);
return connection.query(sql,callback);
},
delete:function(req,callback){
sql = mysql.format('DELETE * FROM product WHERE id= ?',[req.params.id]);
return connection.query(sql,callback);
},
put:function(req,callback){
connection.beginTransaction(function(err){
if(err) throw err;
sql=mysql.format('DELETE * FROM product WHERE id= ?',[req.params.id]);
connection.query(sql,function(err,results,fields){
if(results.affectedRows){
req.body.id=req.params.id;
sql=mysql.format('INSERT INTO product SET ?',req.body);
connection.query(sql,function(err,results,fields){
if(err){
connection.rollback(function(){
callback(err, 400);
});
}else{
connection.commit(function(err){
if(err) callback(err,400);
callback(err,200);
});
}
});
}else{
callback(err,410);
}
});
});
},
patch:function(req,callback){
sql = mysql.format('UPDATE product SET ? WHERE id = ? ',[req.body, req.params.id]);
return connection.query(sql,callback);
}
}
product.js(路由)
var express = require('express');
var product = require('../models/product');
var router=express.Router();
router.route('/')
.get(function (req,res){
product.items(req, function(err, results, fields){
if(err){
res.sendStatus(500);
return console.error(err);
}
if(!results.length){
res.sendStatus(404);
return;
}
res.json(results);
});
})
.post(function(req,res){
product.add(req, function(err,results,fields){
if(err){
res.sendStatus(500);
return console.error(err);
}
res.status(201).json(results.insertId);
});
});
router.route('./id')
.get(function(req,res){
product.item(req,function(err,results,fields){
if(err){
res.sendStatus(500);
return console.error(err);
}
if(!results.length){
res.sendStatus(404);
return;
}
res.json(results);
});
})
.delete(function (req,res){
product.delete(req,function(err,results,fields){
if(err){
res.sendStatus(500);
return console.error(err);
}
if(!results.affectedRows){
res.sendStatus(410);
return;
}
res.sendStatus(204);
});
})
.put(function(req,res){
product.put(req,function(err,results){
if(err){
res.sendStatus(500);
return console.error(err);
}
if(results === 410){
res.sendStatus(410);
return;
}
product.item(req,function(err,results,fields){
res.json(results);
});
});
})
.patch(function(req,res){
product.patch(req,function(err,results){
if(err){
res.sendStatus(500);
return console.error(err);
}
if(!results.affectedRows){
res.sendStatus(410);
return;
}
req.body.id=req.params.id;
res.json([req.body]);
});
});
module.exports = router;
function.js
var crypto = require('crypto');
var config = require('./config');
module.exports = {
passwordCrypto: function(req,res,next){
if(req.body.password){
req.body.password=crypto.createHash('md5')
.update(req.body.password+config.salt)
.digest('hex');
}
next();
}
};
config.js
module.export = {
db:{
host:'127.0.0.1',
user:'root',
password:'1234',
database:'shop',
port:3306
},
port:3300
}
最佳答案
这就是您需要通过传递所有必需的 pram 来创建 mysql 连接对象的方式,示例:
var config =require('../config');
const connection = mysql.createConnection({
host: config.db.host,
user: config.db.user,
password: config.db.password,
database: config.db.database
});
确保 var config =require('../config');
的路径正确,并且您可以通过悬停该文件来读取该文件。
同时将 config.js
文件中的 module.export = {
更改为 module.exports = {
关于javascript - Node.js 类型错误 : Cannot read property 'host' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59948766/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!