Giter Site home page Giter Site logo

Comments (8)

nlf avatar nlf commented on April 27, 2024

Out of curiosity, what's the expected result here?

from qs.

nlf avatar nlf commented on April 27, 2024

Also it appears that the old version of qs crashed with this also:

$ npm i [email protected]
[email protected] node_modules/qs
$ node
> var qs = require('qs');
> var a = {}; a.b = a; qs.parse({ 'foo[bar]': 'baz', 'foo[baz]': a })
RangeError: Maximum call stack size exceeded

from qs.

dougwilson avatar dougwilson commented on April 27, 2024

Hm, weird. All I really know is that something with domains used to work with the old qs but not with the new qs according to expressjs/connect-multiparty#11 . I don't use domains, so from the error I was just assuming it was a circular reference.

Anyway, I would assume that it would just copy the reference to the new object with different key names instead of trying to clone the value.

from qs.

dougwilson avatar dougwilson commented on April 27, 2024

So, removing the (useless?) clone call at https://github.com/hapijs/qs/blob/master/lib/parse.js#L141 seem to fix this.

from qs.

dougwilson avatar dougwilson commented on April 27, 2024

Also, I verified that [email protected] does not have the issue. You may have accidentally been using the wrong version of qs when you were trying to test [email protected]. Here is my output from testing the old 0.6.6 version:

$ npm install [email protected]
[email protected] node_modules\qs
$ node -pe 'require("qs/package").version'
0.6.6
$ node -pe 'a={};a.b=a;require("qs").parse({"a[0]": "b", "a[1]": a})'
{ a: [ 'b', { b: [Circular] } ] }

so, as you can see, 0.6.6 did work with circular structures.

from qs.

dougwilson avatar dougwilson commented on April 27, 2024

Actually, it seems like [email protected] has the issue only with certain input, and not with other input, while the current qs just always has a range error. Weird...

from qs.

nlf avatar nlf commented on April 27, 2024

I think I have a fix regardless :) Give me just a few minutes

from qs.

dougwilson avatar dougwilson commented on April 27, 2024

haha, no problem. I'm just trying to figure out this weirdness, haha :)

from qs.

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.