作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
{ // res.render('login'); var data = knex.-6ren">
我在 app.js 文件中有这段代码,
app.get('/', (req, res) => {
// res.render('login');
var data = knex.select('*').from('RegisterData');
res.send(data)
console.log(data);
});
最佳答案
在评论中(您确实应该更新您的问题以反射(reflect)这些),您说您定义了 knex
:
const knex = require('knex');
您应该查看 Node.js installation section 中的初始化库段落。 .
它应该看起来像:
const knex = require('knex')({
client: 'mysql',
connection: {...}
});
这意味着 knex
应该是 require
公开的调用函数的结果。
关于mysql - 当我运行 app.js 时,它显示错误 "TypeError: knex.select is not a function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54920391/
我是一名优秀的程序员,十分优秀!