Coder Social home page Coder Social logo

turning back to Json about argo HOT 3 CLOSED

thoughtbot avatar thoughtbot commented on May 24, 2024
turning back to Json

from argo.

Comments (3)

tonyd256 avatar tonyd256 commented on May 24, 2024

Ya, going back to JSON isn't as much of an issue. You could play with different abstractions and maybe have a toJSON function on your model that creates a dictionary from the model properties and then uses NSJSONSerialization to get the JSON object. Up to you though. Agro (as it is now) is more about creating model objects from incoming JSON.

from argo.

emilwojtaszek avatar emilwojtaszek commented on May 24, 2024

@joedaniels29 I was thinking about it today also and that's my proposition at the moment

public extension JSONValue {
    public static func reverse(j: JSONValue) -> AnyObject {
        switch j {
        case let .JSONNull: return NSNull()
        case let .JSONString(v): return v
        case let .JSONNumber(v): return v
        case let .JSONArray(a): return a.map(reverse)
        case let .JSONObject(v):
            var object: [String: AnyObject] = [:]
            for key in v.keys {
                if let value: JSONValue = v[key] {
                    object[key] = reverse(value)
                } else {
                    object[key] = NSNull()
                }
            }
            return object
        }
    }
}

from argo.

tonyd256 avatar tonyd256 commented on May 24, 2024

@emilwojtaszek I don't think there is much of a case for turing a JSONValue back into JSON. The point of JSONValue is to be an in-between step when parsing from JSON to a model object in order to help the Swift compiler with type inference. There shouldn't be many times where you parse the JSON to a JSONValue just to call reverse to get it back to JSON. The more usual case is to have a model object you need to save in which chase you can just make the Dictionary from the model object directly.

from argo.

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.