TypeError:无法读取未定义的属性“findAll"(expressjs)

TypeError: Cannot read property #39;findAll#39; of undefined (expressjs)(TypeError:无法读取未定义的属性“findAll(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)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)