Code Monkey home page Code Monkey logo

Comments (5)

nashwaan avatar nashwaan commented on May 30, 2024

Can you provide an example of the code and json file that you tried to convert?
Please try to make it as minimal as possible.

from xml-js.

Nehaw149 avatar Nehaw149 commented on May 30, 2024

Hi Nashwaan,
Below is the required info,

var json = fs.readFileSync('./Parsed_XAML.json', 'utf8'); var options = {ignoreComment: true, spaces: 4}; var result = convert.json2xml(json, options); console.log(result);

and JSON is

{ "Window": { "_attributes": { "x:Class": "WpfTutorialSamples.Panels.DockPanel", "xmlns": "http://schemas.microsoft.com/winfx/2006/xaml/presentation", "xmlns:x": "http://schemas.microsoft.com/winfx/2006/xaml", "Title": "DockPanel", "Height": "250", "Width": "250" }, "DockPanel": { "Button": [ { "_attributes": { "DockPanel.Dock": "Left" }, "formattedJSON": "Left" }, { "_attributes": { "DockPanel.Dock": "Top" }, "_text": "Top" }, { "_attributes": { "DockPanel.Dock": "Right" }, "_text": "Right" }, { "_attributes": { "DockPanel.Dock": "Bottom" }, "_text": "Bottom" }, { "_text": "Center" } ] } } }

please let me know.

from xml-js.

nashwaan avatar nashwaan commented on May 30, 2024

@Nehaw149
You need to pass compact: true in the options; because you originally converted the xml to json using compact mode.

Therefore, change to this:
var options = {ignoreComment: true, spaces: 4, compact: true};

from xml-js.

Nehaw149 avatar Nehaw149 commented on May 30, 2024

@nashwaan
In all cases it provides an error saying, Unexpected token < in JSON at position 0. This is observed for all basic JSON objects too.
e.g. var json = {"a":{"b":{}}};

from xml-js.

Nehaw149 avatar Nehaw149 commented on May 30, 2024

Closing the bug as error above is caused due to presence of data in the generated file.
Thanks for quick help.

from xml-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.