Giter Site home page Giter Site logo

Comments (2)

odanoburu avatar odanoburu commented on June 28, 2024 2

Thanks for the clarifications; no idea what I was thinking at the time.

from json.lua.

xphip avatar xphip commented on June 28, 2024
[error] 30#30: *4 lua entry thread aborted: runtime error: json.lua:185: expected string for key

The string ({1: 1, '1':2}) you are trying to parse isn't a valid JSON.
Index cannot be numeric type. Cannot have duplicate index. Double quotes to define an index.

Trying to encode values which are unrepresentable in JSON will never result in type conversion or other magic: sparse arrays, tables with mixed key types or invalid numbers (NaN, -inf, inf) will raise an error
https://github.com/rxi/json.lua#notes


In Javascript, Object.entries isn't a JSON parser.

The Object.entries() method returns an array of a given object's own enumerable string-keyed property [key, value] pairs.

The proper method to parse a JSON in Javascript is JSON.parse
And trying to parse your string is returned:

Uncaught SyntaxError: Unexpected number in JSON at position 1

Making these small corrections (even still with duplicate index) the code works fine.

local decoded = json.decode('{"1":1,"1":2}')
local encoded = json.encode(decoded)
ngx.say(encoded)

-- Output: {"1":2}

from json.lua.

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.