所以我想要返回数据库结果,而不是别的。目前,我收到了大量的JSON数据(如下所示):
但我只需要[dataValues]属性。我不想使用JSON
的这一点来检索它:tagData[0].dataValues.tagId
。
我刚注意到:当它找到并且 DOESN' T CREATE 时,它会返回数据库结果的JSON
,但是当它 DOESN' T时查找并创建,它返回不需要的JSON blob(如下所示)有没有办法解决这个问题?
[ { dataValues:
{ tagId: 1,
tagName: '#hash',
updatedAt: Fri Dec 25 2015 17:07:13 GMT+1100 (AEDT),
createdAt: Fri Dec 25 2015 17:07:13 GMT+1100 (AEDT) },
_previousDataValues:
{ tagId: 1,
tagName: '#hash',
createdAt: Fri Dec 25 2015 17:07:13 GMT+1100 (AEDT),
updatedAt: Fri Dec 25 2015 17:07:13 GMT+1100 (AEDT) },
_changed:
{ tagId: false,
tagName: false,
createdAt: false,
updatedAt: false },
'$modelOptions':
{ timestamps: true,
instanceMethods: {},
classMethods: {},
validate: {},
freezeTableName: true,
underscored: false,
underscoredAll: false,
paranoid: false,
whereCollection: [Object],
schema: null,
schemaDelimiter: '',
defaultScope: null,
scopes: [],
hooks: {},
indexes: [],
name: [Object],
omitNull: false,
sequelize: [Object],
uniqueKeys: [Object],
hasPrimaryKeys: true },
'$options':
{ isNewRecord: true,
'$schema': null,
'$schemaDelimiter': '',
attributes: undefined,
include: undefined,
raw: true,
silent: undefined },
hasPrimaryKeys: true,
__eagerlyLoadedAssociations: [],
isNewRecord: false },
true ]
而不是像上面那样得到大blob我只需要RAW
json结果(如下所示):
{ tagId: 1,
tagName: '#hash',
updatedAt: Fri Dec 25 2015 17:07:13 GMT+1100 (AEDT),
createdAt: Fri Dec 25 2015 17:07:13 GMT+1100 (AEDT) },
我使用了以下javascript。我确实尝试添加raw: true
,但它没有用?
// Find or create new tag (hashtag), then insert it into DB with photoId relation
module.exports = function(tag, photoId) {
tags.findOrCreate( {
where: { tagName: tag },
raw: true
})
.then(function(tagData){
// console.log("----------------> ", tagData[0].dataValues.tagId);
console.log(tagData);
tagsRelation.create({ tagId: tagData[0].dataValues.tagId, photoId: photoId })
.then(function(hashtag){
// console.log("\nHashtag has been inserted into DB: ", hashtag);
}).catch(function(err){
console.log("\nError inserting tags and relation: ", err);
});
}).catch(function(err){
if(err){
console.log(err);
}
});
}
所以我进行了一些调查,似乎只有当JSON
正在创建而没有找到时才返回大的Sequelize
blob。
有没有办法解决这个问题?
好的,所以我找到了一种解决方法,可以将其转变为可重复使用的功能。但如果Sequelize
内置了一些内容,我更愿意使用它。
var tagId = "";
// Extract tagId from json blob
if(tagData[0].hasOwnProperty('dataValues')){
console.log("1");
tagId = tagData[0].dataValues.tagId;
} else {
console.log("2");
console.log(tagData);
tagId = tagData[0].tagId;
}
console.log(tagId);
tagsRelation.create({ tagId: tagId, photoId: photoId })
所以,我不认为有一个"官员" sequelize实现这一点的方法所以我只是编写了一个自定义模块,它返回所需的JSON
数据。该模块可以定制和扩展,以适应各种情况!如果有人对如何改进模块有任何建议,请随时评论:)
在此模块中,我们返回了一个Javascript对象。如果您想将其转换为JSON
,只需使用JSON.stringify(data)
对其进行字符串化即可。
// Pass in your sequelize JSON object
module.exports = function(json){
var returnedJson = []; // This will be the object we return
json = JSON.parse(json);
// Extract the JSON we need
if(json[0].hasOwnProperty('dataValues')){
console.log("HI: " + json[0].dataValues);
returnedJson = json[0].dataValues; // This must be an INSERT...so dig deeper into the JSON object
} else {
console.log(json[0]);
returnedJson = json[0]; // This is a find...so the JSON exists here
}
return returnedJson; // Finally return the json object so it can be used
}
所以有一种官方的续集方法。请参阅下面接受的答案。
答案 0 :(得分:22)
尽管记录不完整,但Sequelize确实存在这种情况。
夫妻方式:
1。对于查询产生的任何响应对象,您可以通过附加.get({plain:true})
响应来仅提取所需的数据,如下所示:
Item.findOrCreate({...})
.spread(function(item, created) {
console.log(item.get({
plain: true
})) // logs only the item data, if it was found or created
另外,请确保使用spread
回调函数作为您的动态查询承诺类型。请注意,您可以访问布尔响应created
,表示是否执行了创建查询。
2。 Sequelize提供raw
选项。只需添加选项{raw:true}
,您将只收到原始结果。这将对一组结果起作用,第一种方法不应该,因为get
不是数组的函数。
答案 1 :(得分:6)
如果您只想使用values of an instance尝试致电using System;
using OpenCvSharp;
namespace EdgeDetect
{
class Template
{
public Template()
{
CvCapture cap = CvCapture.FromCamera(1);
CvWindow w = new CvWindow("Template Matching");
IplImage tpl = Cv.LoadImage("speedlimit55.jpg", LoadMode.Color);
CvPoint minloc, maxloc;
double minval, maxval;
while (CvWindow.WaitKey(10) < 0)
{
IplImage img = cap.QueryFrame();
IplImage res = Cv.CreateImage(Cv.Size(img.Width - tpl.Width + 1, img.Height - tpl.Height + 1), BitDepth.F32, 1);
Cv.MatchTemplate(img, tpl, res, MatchTemplateMethod.CCoeff);
Cv.MinMaxLoc(res, out minval, out maxval, out minloc, out maxloc, null);
Cv.Rectangle(img, Cv.Point(minloc.X, minloc.Y), Cv.Point(minloc.X + tpl.Width, minloc.Y + tpl.Height), CvColor.Red, 1, 0, 0);
w.Image = img;
Cv.ReleaseImage(res);
Cv.ReleaseImage(img);
}
}
}
}
或get({plain: true})
toJSON()
答案 2 :(得分:3)
已更新:
使用data.dataValues
db.Message.create({
userID: req.user.user_id,
conversationID: conversationID,
content: req.body.content,
seen: false
})
.then(data => {
res.json({'status': 'success', 'data': data.dataValues})
})
.catch(function (err) {
res.json({'status': 'error'})
})
答案 3 :(得分:1)
现在更容易使用async/await
语法阅读
module.exports = async function(tagName) {
const [tag, created] = await Tag.findOrCreate({
where: {tagName},
defaults: {tagName}
});
return tag.get({plain:true});
}
答案 4 :(得分:0)
sequelize-values
是一个npm模块,可以帮助您完成此操作。它有方法可以轻松地在单个项目和结果列表上打印值(数组)
https://www.npmjs.com/package/sequelize-values