Giter VIP home page Giter VIP logo

Comments (19)

mathiasbynens avatar mathiasbynens commented on September 23, 2024

Can you give an example?

Use JSON.stringify() to generate JSON (and take care of escaping quotes in strings).

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

take care of escaping quotes in strings

That's exactly what I want to automate :)

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

Ok, I guess your issue is resolved then? :)

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

No because I didn't found out how to automate string quote escaping

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

I'm confused. I just told you that JSON.stringify does that for you.

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

JSON.parse(JSON.stringify(val)) returns val

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

It does indeed!

Again, can you give an example of what you're trying to do? Provide example input, desired output, and code you've tried so far.

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

Here is a JSFiddle example : https://jsfiddle.net/KaKi87/56pbLtuf/

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

How is the content inserted into the <pre>? Are you doing that on the server side?

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

No, this is an example.
The original is a real JSON response, fetched using NodeJS request.
But, this fiddle have the same behavior as in my script. The point is that I can't auto-escape quotes inside JSON strings.

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

The original is a real JSON response, fetched using NodeJS request.

If it's a proper JSON response, then JSON.parse would succeed, making it different from the demo you shared.

I'm still struggling to understand what you mean.

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

Okay then try to parse this : https://trigedasleng.net/api/api?action=search&query=dei%20de

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

Works for me:

(async () => {
  const response = await fetch('https://trigedasleng.net/api/api?action=search&query=dei%20de');
  const data = await response.json();
  console.log('Result:', data);
})();
// Result: {...}

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

Okay but did you decoded the HTML entities ?

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

To decode HTML entities in a string, use he.decode(string).

(async () => {
  const response = await fetch('https://trigedasleng.net/api/api?action=search&query=dei%20de');
  const data = await response.json();
  data.words = data.words.map((word) => {
    word.translation = he.decode(word.translation);
    return word;
  });
  console.log('Result:', data);
})();
// Result: {...}

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

So, I must decode property by property ??

from he.

mathiasbynens avatar mathiasbynens commented on September 23, 2024

Yeah. There's no way he or any other library can know which values need decoding and which do not; it depends on the use case.

from he.

KaKi87 avatar KaKi87 commented on September 23, 2024

All I need is to automatically escape the " character

from he.

David263 avatar David263 commented on September 23, 2024

It seems to me that you could use the string.replace method to replace any instance of " with \" in your server strings (if that is truly "all you need"). The he library is used to create and remove HTML entities, not to use \ to escape characters in strings.

from he.

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.