我正在尝试使用localhost:5000/api/users
在远程计算机上执行mysql查询。
我能够在没有任何条件(例如
)的情况下执行查询localhost:3000
但是当我包含where子句
时server.js
我遇到此错误:
第1行的错误1054(42S22):“ where”中的未知列“ 条款”
我的真实查询:
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();
});
有帮助吗?