我在node.js之上使用sequilize並表示爲了創建一個API,我的反應可以使用本教程http://mherman.org/blog/2015/10/22/node-postgres-sequelize/#.WSJ77BMrLBL訪問。我無法讓數據庫填充名爲商店的產品對象。我有什麼作爲的,現在是:使用sequelize創建具有許多關係的API postgresql
路線:
// get all stores
router.get('/stores', function(req, res) {
models.Store.findAll({}).then(function(stores) {
res.json(stores);
});
});
// get single store
router.get('/stores/:id', function(req, res) {
models.Store.find({
where: {
id: req.params.id
}
}).then(function(store) {
res.json(store.productId);
});
});
// add new store
router.post('/stores', function(req, res) {
models.Store.create({
name: req.body.name,
productId: req.body.product_id
}).then(function(store) {
res.json(store);
});
});
店:
'use strict';
module.exports = function(sequelize, DataTypes) {
var Store = sequelize.define('Store', {
name: {
type: DataTypes.STRING,
defaultValue: ""
},
description: {
type: DataTypes.STRING,
defaultValue: ""
},
phone: {
type: DataTypes.STRING,
defaultValue: ""
},
email: {
type: DataTypes.STRING,
defaultValue: ""
},
image_url: {
type: DataTypes.STRING,
defaultValue: ""
},
}, {
classMethods:{
associate:function(models){
Store.hasMany(models.Product, { foreignKey: 'productId'});
}
}
});
return Store;
}
但是當我運行curl --data "name=test&product_id=1" http://127.0.0.1:5000/stores
我得到: {"description":"","phone":"","email":"","image_url":"","id":2,"name":"test","updatedAt":"2017-05-22T05:43:10.376Z","createdAt":"2017-05-22T05:43:10.376Z"}
,當我瀏覽到商店頁面我得到相同的東西,但看不到產品ID
我在做什麼錯?有人可以提供一些指導。
謝謝!
多數民衆贊成它,謝謝!知道這很簡單 – seanscal