Node JS passing an JavaScript object that could be undefined to pug template
My route needs to pass a series of JavaScript objects to the pug template.
router.get('/edit/:itemObjectId', async function(req, res, next) {
var itemObjectId = req.params.itemObjectId;
var equipmentCategoryArr = ;
var lifeExpectancyArr = ;
var businessUnitResponsibleArr = ;
var item = undefined;
try {
item = await db_item.getItem(itemObjectId);
// Where item["result"] is either undefined or a JavaScript Object. E.g. {"createdAt":"2018-11-07T04:07:44.587Z","updatedAt":"2018-11-07T04:25:18.526Z","item_name":"GM Portable","manufacturer":"GM"}
res.render('editItem', {
title: 'Edit item details', // Give a title to our page
item: item["result"],
equipmentCategoryArr: req.app.locals.equipmentCategoryArr,
lifeExpectancyArr: req.app.locals.lifeExpectancyArr,
businessUnitResponsibleArr: req.app.locals.businessUnitResponsibleArr
});
} catch (err) {
return Promise.reject(JSON.stringify({ "Error": err }));
}
});
Where
item["result"]
could be either undefined or a JavaScript object.
On the editItem.pug page, I need to use the item in JavaScript.
block extraScript
script.
console.log(!{JSON.stringify(item)});
However, it renders like "console.log();
" if item that was passed is undefined. So !{JSON.stringify(item)}
was not rendered at all.
How can I check if item is undefined or not on the fron-end?
javascript node.js express pug
add a comment |
My route needs to pass a series of JavaScript objects to the pug template.
router.get('/edit/:itemObjectId', async function(req, res, next) {
var itemObjectId = req.params.itemObjectId;
var equipmentCategoryArr = ;
var lifeExpectancyArr = ;
var businessUnitResponsibleArr = ;
var item = undefined;
try {
item = await db_item.getItem(itemObjectId);
// Where item["result"] is either undefined or a JavaScript Object. E.g. {"createdAt":"2018-11-07T04:07:44.587Z","updatedAt":"2018-11-07T04:25:18.526Z","item_name":"GM Portable","manufacturer":"GM"}
res.render('editItem', {
title: 'Edit item details', // Give a title to our page
item: item["result"],
equipmentCategoryArr: req.app.locals.equipmentCategoryArr,
lifeExpectancyArr: req.app.locals.lifeExpectancyArr,
businessUnitResponsibleArr: req.app.locals.businessUnitResponsibleArr
});
} catch (err) {
return Promise.reject(JSON.stringify({ "Error": err }));
}
});
Where
item["result"]
could be either undefined or a JavaScript object.
On the editItem.pug page, I need to use the item in JavaScript.
block extraScript
script.
console.log(!{JSON.stringify(item)});
However, it renders like "console.log();
" if item that was passed is undefined. So !{JSON.stringify(item)}
was not rendered at all.
How can I check if item is undefined or not on the fron-end?
javascript node.js express pug
Why are you negating the results of JSON.parse? You aren't seeing a false value being logged out?
– Robert Moskal
Nov 12 at 3:19
add a comment |
My route needs to pass a series of JavaScript objects to the pug template.
router.get('/edit/:itemObjectId', async function(req, res, next) {
var itemObjectId = req.params.itemObjectId;
var equipmentCategoryArr = ;
var lifeExpectancyArr = ;
var businessUnitResponsibleArr = ;
var item = undefined;
try {
item = await db_item.getItem(itemObjectId);
// Where item["result"] is either undefined or a JavaScript Object. E.g. {"createdAt":"2018-11-07T04:07:44.587Z","updatedAt":"2018-11-07T04:25:18.526Z","item_name":"GM Portable","manufacturer":"GM"}
res.render('editItem', {
title: 'Edit item details', // Give a title to our page
item: item["result"],
equipmentCategoryArr: req.app.locals.equipmentCategoryArr,
lifeExpectancyArr: req.app.locals.lifeExpectancyArr,
businessUnitResponsibleArr: req.app.locals.businessUnitResponsibleArr
});
} catch (err) {
return Promise.reject(JSON.stringify({ "Error": err }));
}
});
Where
item["result"]
could be either undefined or a JavaScript object.
On the editItem.pug page, I need to use the item in JavaScript.
block extraScript
script.
console.log(!{JSON.stringify(item)});
However, it renders like "console.log();
" if item that was passed is undefined. So !{JSON.stringify(item)}
was not rendered at all.
How can I check if item is undefined or not on the fron-end?
javascript node.js express pug
My route needs to pass a series of JavaScript objects to the pug template.
router.get('/edit/:itemObjectId', async function(req, res, next) {
var itemObjectId = req.params.itemObjectId;
var equipmentCategoryArr = ;
var lifeExpectancyArr = ;
var businessUnitResponsibleArr = ;
var item = undefined;
try {
item = await db_item.getItem(itemObjectId);
// Where item["result"] is either undefined or a JavaScript Object. E.g. {"createdAt":"2018-11-07T04:07:44.587Z","updatedAt":"2018-11-07T04:25:18.526Z","item_name":"GM Portable","manufacturer":"GM"}
res.render('editItem', {
title: 'Edit item details', // Give a title to our page
item: item["result"],
equipmentCategoryArr: req.app.locals.equipmentCategoryArr,
lifeExpectancyArr: req.app.locals.lifeExpectancyArr,
businessUnitResponsibleArr: req.app.locals.businessUnitResponsibleArr
});
} catch (err) {
return Promise.reject(JSON.stringify({ "Error": err }));
}
});
Where
item["result"]
could be either undefined or a JavaScript object.
On the editItem.pug page, I need to use the item in JavaScript.
block extraScript
script.
console.log(!{JSON.stringify(item)});
However, it renders like "console.log();
" if item that was passed is undefined. So !{JSON.stringify(item)}
was not rendered at all.
How can I check if item is undefined or not on the fron-end?
javascript node.js express pug
javascript node.js express pug
asked Nov 12 at 3:07
alextc
80942449
80942449
Why are you negating the results of JSON.parse? You aren't seeing a false value being logged out?
– Robert Moskal
Nov 12 at 3:19
add a comment |
Why are you negating the results of JSON.parse? You aren't seeing a false value being logged out?
– Robert Moskal
Nov 12 at 3:19
Why are you negating the results of JSON.parse? You aren't seeing a false value being logged out?
– Robert Moskal
Nov 12 at 3:19
Why are you negating the results of JSON.parse? You aren't seeing a false value being logged out?
– Robert Moskal
Nov 12 at 3:19
add a comment |
1 Answer
1
active
oldest
votes
You can manipulate this in three places, all using the ternary operator ( condition ? ifTrue : ifFalse
)
In the route you can switch it from being undefined to an empty object
item: item["result"] ? item["result"] : {}
In the template you could apply the same logic:
console.log(!{ item ? JSON.stringify(item) : '{}' } );
You are going to need to do one of the two things above to make sure that something is getting rendered into the client-side code, otherwise you're going to face a syntax error from an empty expression:
var item = ;
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53255483%2fnode-js-passing-an-javascript-object-that-could-be-undefined-to-pug-template%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can manipulate this in three places, all using the ternary operator ( condition ? ifTrue : ifFalse
)
In the route you can switch it from being undefined to an empty object
item: item["result"] ? item["result"] : {}
In the template you could apply the same logic:
console.log(!{ item ? JSON.stringify(item) : '{}' } );
You are going to need to do one of the two things above to make sure that something is getting rendered into the client-side code, otherwise you're going to face a syntax error from an empty expression:
var item = ;
add a comment |
You can manipulate this in three places, all using the ternary operator ( condition ? ifTrue : ifFalse
)
In the route you can switch it from being undefined to an empty object
item: item["result"] ? item["result"] : {}
In the template you could apply the same logic:
console.log(!{ item ? JSON.stringify(item) : '{}' } );
You are going to need to do one of the two things above to make sure that something is getting rendered into the client-side code, otherwise you're going to face a syntax error from an empty expression:
var item = ;
add a comment |
You can manipulate this in three places, all using the ternary operator ( condition ? ifTrue : ifFalse
)
In the route you can switch it from being undefined to an empty object
item: item["result"] ? item["result"] : {}
In the template you could apply the same logic:
console.log(!{ item ? JSON.stringify(item) : '{}' } );
You are going to need to do one of the two things above to make sure that something is getting rendered into the client-side code, otherwise you're going to face a syntax error from an empty expression:
var item = ;
You can manipulate this in three places, all using the ternary operator ( condition ? ifTrue : ifFalse
)
In the route you can switch it from being undefined to an empty object
item: item["result"] ? item["result"] : {}
In the template you could apply the same logic:
console.log(!{ item ? JSON.stringify(item) : '{}' } );
You are going to need to do one of the two things above to make sure that something is getting rendered into the client-side code, otherwise you're going to face a syntax error from an empty expression:
var item = ;
answered Nov 12 at 15:07
Graham
3,523123558
3,523123558
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53255483%2fnode-js-passing-an-javascript-object-that-could-be-undefined-to-pug-template%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Why are you negating the results of JSON.parse? You aren't seeing a false value being logged out?
– Robert Moskal
Nov 12 at 3:19