TypeError: Cannot read property #39;findAll#39; of undefined (expressjs)(TypeError:无法读取未定义的属性“findAll(expressjs))
问题描述
TypeError:无法读取未定义(expressjs)的属性findAll".
TypeError: Cannot read property 'findAll' of undefined (expressjs).
所有功能(续集)都不起作用.所有错误:无法读取属性续集方法"...
All functions (sequelize) are not working. All errors: Cannot read property 'sequelize method' ...
module.exports = function (sequelize, DataTypes) {
var User = sequelize.define('user', {
email: {type: DataTypes.STRING(32), unique: true, allowNull: false},
});
return User;
};
控制器:
models = require('./../models');
exports.index = function (request, response, next) {
models.User.findAll({attributes: ['id', 'username']});
};
推荐答案
我遇到了同样的问题,下面的更改对我有用.这可能对未来的用户有用 -
I had the same issue, and the changes below worked for me. This might be useful for future users -
当你使用sequelize模型时,你需要使用定义好的模型类名,在findAll行中是user"而不是User":
when you use the sequelize model you need to use the defined model class name, which is "user" instead of "User" in line findAll:
models = require('./../models');
exports.index = function (request, response, next) {
models.user.findAll({attributes: ['id', 'username']});
};
用户"是分配了续集定义的变量,并且在该模型定义之外无法识别.用户"是正在创建的表名以及 sequelize 模型类名,这需要在任何类型的数据库查询中使用.
The "User" is a variable to which the sequelize definition is assigned and its not recognized outside that model definition. The "user" is the table name that is getting created as well as the sequelize model class name, and this needs to be used in any type of db query.
这篇关于TypeError:无法读取未定义的属性“findAll"(expressjs)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:TypeError:无法读取未定义的属性“findAll"(expressjs)


基础教程推荐
- 检查 HTML5 拖放文件类型 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01