xml to json conversion and vice versa angular 4
I am working in a angular 4 project and i have to convert xml to json and vice versa.
I am successfull in achieving this by using below thread:
https://goessner.net/download/prj/jsonxml/
This is my sample xml :
<food><pizza type="cheese"/></food>
The parser converted it to json as below:
{
"food":{
"pizza":{"@type":"cheese"},
I have to write a selector where i need to render value of @type.
I have tried it like below:
//selector which returns @type
export const foodValueSelctr=
createSelector(paredJsonSelectore,
(json) => {
console.log(json.food.pizza.@type);
return json.food.pizza.@type;
});
At this line of code I get below error:
Module parse failed: Unexpected token (18:38)
You may need an appropriate loader to handle this file type.
How can I access this @type in code using dot notation ?
Also,
Can i use any other lib to achieve my functionality ?
javascript json angular object
add a comment |
I am working in a angular 4 project and i have to convert xml to json and vice versa.
I am successfull in achieving this by using below thread:
https://goessner.net/download/prj/jsonxml/
This is my sample xml :
<food><pizza type="cheese"/></food>
The parser converted it to json as below:
{
"food":{
"pizza":{"@type":"cheese"},
I have to write a selector where i need to render value of @type.
I have tried it like below:
//selector which returns @type
export const foodValueSelctr=
createSelector(paredJsonSelectore,
(json) => {
console.log(json.food.pizza.@type);
return json.food.pizza.@type;
});
At this line of code I get below error:
Module parse failed: Unexpected token (18:38)
You may need an appropriate loader to handle this file type.
How can I access this @type in code using dot notation ?
Also,
Can i use any other lib to achieve my functionality ?
javascript json angular object
1
can you trypizza["@type"]
instead?
– ADyson
Nov 14 '18 at 19:20
@ADyson perfect thanks
– pankaj
Nov 14 '18 at 19:24
add a comment |
I am working in a angular 4 project and i have to convert xml to json and vice versa.
I am successfull in achieving this by using below thread:
https://goessner.net/download/prj/jsonxml/
This is my sample xml :
<food><pizza type="cheese"/></food>
The parser converted it to json as below:
{
"food":{
"pizza":{"@type":"cheese"},
I have to write a selector where i need to render value of @type.
I have tried it like below:
//selector which returns @type
export const foodValueSelctr=
createSelector(paredJsonSelectore,
(json) => {
console.log(json.food.pizza.@type);
return json.food.pizza.@type;
});
At this line of code I get below error:
Module parse failed: Unexpected token (18:38)
You may need an appropriate loader to handle this file type.
How can I access this @type in code using dot notation ?
Also,
Can i use any other lib to achieve my functionality ?
javascript json angular object
I am working in a angular 4 project and i have to convert xml to json and vice versa.
I am successfull in achieving this by using below thread:
https://goessner.net/download/prj/jsonxml/
This is my sample xml :
<food><pizza type="cheese"/></food>
The parser converted it to json as below:
{
"food":{
"pizza":{"@type":"cheese"},
I have to write a selector where i need to render value of @type.
I have tried it like below:
//selector which returns @type
export const foodValueSelctr=
createSelector(paredJsonSelectore,
(json) => {
console.log(json.food.pizza.@type);
return json.food.pizza.@type;
});
At this line of code I get below error:
Module parse failed: Unexpected token (18:38)
You may need an appropriate loader to handle this file type.
How can I access this @type in code using dot notation ?
Also,
Can i use any other lib to achieve my functionality ?
javascript json angular object
javascript json angular object
edited Nov 14 '18 at 19:31
ADyson
24.3k112545
24.3k112545
asked Nov 14 '18 at 19:09
pankajpankaj
3711521
3711521
1
can you trypizza["@type"]
instead?
– ADyson
Nov 14 '18 at 19:20
@ADyson perfect thanks
– pankaj
Nov 14 '18 at 19:24
add a comment |
1
can you trypizza["@type"]
instead?
– ADyson
Nov 14 '18 at 19:20
@ADyson perfect thanks
– pankaj
Nov 14 '18 at 19:24
1
1
can you try
pizza["@type"]
instead?– ADyson
Nov 14 '18 at 19:20
can you try
pizza["@type"]
instead?– ADyson
Nov 14 '18 at 19:20
@ADyson perfect thanks
– pankaj
Nov 14 '18 at 19:24
@ADyson perfect thanks
– pankaj
Nov 14 '18 at 19:24
add a comment |
1 Answer
1
active
oldest
votes
You can use the alternative syntax (known as "bracket notation") as follows:
console.log(json.food.pizza["@type"]);
See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors for documentation.
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%2f53307195%2fxml-to-json-conversion-and-vice-versa-angular-4%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 use the alternative syntax (known as "bracket notation") as follows:
console.log(json.food.pizza["@type"]);
See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors for documentation.
add a comment |
You can use the alternative syntax (known as "bracket notation") as follows:
console.log(json.food.pizza["@type"]);
See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors for documentation.
add a comment |
You can use the alternative syntax (known as "bracket notation") as follows:
console.log(json.food.pizza["@type"]);
See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors for documentation.
You can use the alternative syntax (known as "bracket notation") as follows:
console.log(json.food.pizza["@type"]);
See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors for documentation.
answered Nov 14 '18 at 19:31
ADysonADyson
24.3k112545
24.3k112545
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.
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%2f53307195%2fxml-to-json-conversion-and-vice-versa-angular-4%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
1
can you try
pizza["@type"]
instead?– ADyson
Nov 14 '18 at 19:20
@ADyson perfect thanks
– pankaj
Nov 14 '18 at 19:24