作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在测试了这段代码后,我对我的表被创建感到困惑。当调用 .sync 方法时,我会期望没有连接。 sync() 方法是否以某种方式等待连接建立?
var Sequelize = require('sequelize');
var chalk = require('chalk');
var sequelize = new Sequelize('postgres://localhost/nfldb');
sequelize.define('team', {
name: Sequelize.STRING
});
sequelize.authenticate()
.then(function(){
console.log(chalk.green('connected to database ' + sequelize.config.database));
})
.catch(function(er){
console.log(chalk.red(er.message));
});
sync();
function sync(){
sequelize.sync({force: true})
.then(function(){
console.log(chalk.green('database has been synced'));
})
.catch(function(){
console.log(chalk.red('unable to sync database'));
});
}
最佳答案
是的,sync
自动请求连接到数据库。 authenticate
旨在用于检查您是否可以在不执行真正查询的情况下连接到数据库 - 据我记得它确实 SELECT 1 + 1
。不需要调用 authenticate
,它只是一种方便的方法。
关于sequelize.js - Sequelize 同步方法在执行前是否等待连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34576457/
我是一名优秀的程序员,十分优秀!