Reputation: 1929
I'm trying to create a array structure. So, we have parts and each part had articles.
So i did a promise to collect all parts .then()
i need to iterate part promise and select the articles in this part .then()
i want to push this to a array parts and render this in a view.
The structure is this:
-PARTS
- part
- u_order
- u_familia
- u_part
- u_type
- articles (article from each part)
And my code is this:
var p1 = new Promise(function(resolve, reject) {
var stamp = req.params.stamp;
request.query("SELECT u_order, u_familia, u_part, u_type FROM u_part (nolock) where u_order <'92' and u_order <> '100'").then((data)=>resolve(data));
// or
// reject ("Error!");
});
p1.then(function(value){
var stamp = req.params.stamp;
console.log(value.length);
for(var i= 0; i<value.length; i++)
{
console.log(value[i]);
request.query("SELECT st.u_posic, sc.ref, sc.qtt, sc.design FROM st INNER JOIN sc ON st.ref = sc.ref where sc.ststamp ='"+stamp+"' and st.u_posic = '"+value[i].u_order+"'").then((data)=>resolve(data));
}
}, function(reason){
console.log(reason);
});
p1.then(function(part, articles){
var parts = [];
console.log("PART: " +part.length);
for(var j= 0; j<part.length; j++)
{
console.log(part[j].u_order);
console.log(part[j].u_familia);
console.log(part[j].u_part);
console.log(part[j].u_type);
console.log(articles[j]);
};
});
In last .then()
i just have the parts, i can't access to articles maybe because i'm not doing well with second .then()
I'm starting working with promises, i also read documentation but i can't do this.
Anyone can help me to understand and solve this?
Upvotes: 13
Views: 55011
Reputation: 1
The best I can do.
request.query("SELECT u_order, u_familia, u_part, u_type FROM u_part (nolock) where u_order <'92' and u_order <> '100'")
.then(function(parts){
var stamp = req.params.stamp;
return Promise.all(parts.map(function(part) {
return request.query("SELECT st.u_posic, sc.ref, sc.qtt, sc.design FROM st INNER JOIN sc ON st.ref = sc.ref where sc.ststamp ='"+stamp+"' and st.u_posic = '"+part.u_order+"'")
.then(function(articles) {
part.articles = articles;
return part;
});
}));
})
.then(function(parts){
parts.forEach(function(part) {
console.log(part.u_order);
console.log(part.u_familia);
console.log(part.u_part);
console.log(part.u_type);
part.articles.forEach(function(article) {
console.log(article.u_posic);
console.log(article.ref);
console.log(article.qtt);
console.log(article.design);
});
});
});
BONUS ES2015+ version of above
request.query("SELECT u_order, u_familia, u_part, u_type FROM u_part (nolock) where u_order <'92' and u_order <> '100'")
.then(parts => Promise.all(parts.map(part => request.query(`SELECT st.u_posic, sc.ref, sc.qtt, sc.design FROM st INNER JOIN sc ON st.ref = sc.ref where sc.ststamp ='${req.params.stamp}' and st.u_posic = '${part.u_order}'`)
.then(articles => {
part.articles = articles;
return part;
})
)))
.then(parts => parts.forEach(part => {
console.log(part.u_order);
console.log(part.u_familia);
console.log(part.u_part);
console.log(part.u_type);
part.articles.forEach(article => {
console.log(article.u_posic);
console.log(article.ref);
console.log(article.qtt);
console.log(article.design);
});
}));
Upvotes: 7
Reputation: 41
You got it wrong.
First promise.prototype.then resolve with just one Argument. Please check docs
And second thing promise return a promise, so you are just calling a query resolving there only, so no change in first resolved data and while chaining it will just pass the first data as it is
const $Vals = {};
function A() {
return new Promise((resolve, reject) => {
resolve([1, 2, 3])
})
}
function B() {
return new Promise((resolve, reject) => {
resolve([4, 5, 6])
})
}
A().then((dt) => {
$Vals.A = dt;
return B();
}).then((dt) => {
$Vals.B = dt;
console.log('%j', $Vals);
})
output: {"A":[1,2,3],"B":[4,5,6]}
A().then((dt) => new Promise((resolve) => {
B().then((bData) => {
resolve({
A:dt,
B:bData,
})
})
})).then((combined) => {
console.log('%j', combined);
})
Output: {"A":[1,2,3],"B":[4,5,6]}
Upvotes: 3