- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我找了好几个小时都没有解决这个问题。我是 Node.Js 的初学者,目前我正在将它与 Express 以及 Router 和 Sequelize 一起用于学校项目。
上下文:
我有一个 MySQL 数据库,其中有一个表“products”和两行: http://i.imgur.com/U5Lqtpo.png
我想显示每个 SQL 行的每个 id、libelle、类型、描述和 ean13Code。
问题:
我无法将“findAll()”查询的结果传递到 Pug 模板中。我经常遇到这个错误:无法读取未定义的属性“长度”。
代码示例:
下面是代码示例。我希望有人能够知道发生了什么,因为我不知道为什么它不起作用。
如果我忘了提及一些重要的事情,请告诉我。
extends layout
block body
center
h1= title
p Welcome to #{title}
ul
each product in list_products //<-- Cannot read property 'length' of undefined
li= item.libelle
'use strict';
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var models = require('./models');
var index = require('./routes/index');
var sign_in = require('./routes/sign_in');
var users = require('./routes/users');
var products = require('./routes/products');
var app = express();
models.sequelize.sync({
//force: true
});
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'pug');
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', index);
//app.use('/sign_In', sign_in);
app.use('/users', users);
app.use('/products', products);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Route Not Found');
err.status = 404;
next(err);
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
module.exports = app;
var express = require('express');
var router = express.Router();
/* GET index page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'my title' });
});
/* GET sign page. */
router.get('/sign_in', function(req, res, next) {
res.render('sign_in', { title: 'my title' });
});
/* GET users page. */
router.get('/users', function(req, res, next) {
res.render('users', { title: 'my title' });
});
/* GET products page. */
router.get('/products', function(req, res, next) {
res.render('products', { title: 'my title' });
});
module.exports = router;
"use strict";
const express = require("express");
const models = require("../models");
const router = express.Router();
const Product = models.Product;
router.post("/", function(req, res, next){
let libelle = req.body.libelle;
let type = req.body.type;
let description = req.body.description;
let ean13Code = req.body.ean13Code;
Product.create({
libelle: libelle,
type: type,
description: description,
ean13Code: ean13Code
}).then(function(prod){
res.json(prod);
}).catch(next);
});
router.get("/", function(req,res,next){
let limit = req.query.limit || 20;
let offset = req.query.offset || 0;
let options = {
limit: limit,
offset: offset
}
let search = req.query.search;
if(search) {
let where = {
$or: {
libelle: {
$like: "%" + s + "%"
},
type: {
$like: "%" + s + "%"
},
ean13Code: {
$like: "%" + s + "%"
}
}
}
options.where = where;
}
Product.findAll().then(function(products){
for(let i in products){
products[i] = products[i].responsify();
}
// I want to send the results of the findAll() to the products.pug page
res.render("/", {list_products: products});
}).catch(next);
});
router.get("/:prod_id", function(req,res, next){
Product.find({
where: { id: req.params.prod_id },
include: [ models.Product ]
}).then(function(prod){
res.json(prod);
}).catch(next);
});
module.exports = router;
'use strict';
module.exports = function(sequelize, DataTypes) {
var Product = sequelize.define('Product', {
id: { type: DataTypes.BIGINT, primaryKey: true, autoIncrement: true },
libelle: { type: DataTypes.STRING, allowNull: false },
type: { type: DataTypes.STRING, allowNull: false },
description: { type: DataTypes.STRING, allowNull: true },
ean13Code: { type: DataTypes.STRING, unique: true, allowNull: true }
}, {
paranoid: true,
underscored: true,
freezeTableName: true
});
return Product;
};
最佳答案
来自评论:
似乎 Sequelize 并不像我在产品模型中那样重视返回。我不得不做这样的事情:return sequelize.define([...]);而不是 var Product = sequelize.define([...]);我不知道为什么,但它现在有效。但是,我不能再直接在模型中执行 BelongsToMany 关联,这很糟糕。
关于javascript - 哈巴狗/Node.Js : Cannot read property 'length' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44201284/
我只是有一个更琐碎的问题。 为什么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
我是一名优秀的程序员,十分优秀!