Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: #as_json #7

Open
caspiano opened this issue Apr 10, 2019 · 0 comments
Open

feat: #as_json #7

caspiano opened this issue Apr 10, 2019 · 0 comments
Labels
enhancement New feature or request

Comments

@caspiano
Copy link
Contributor

It would be useful to have something like Ruby's #to_json included in ActiveModel::Serializers::JSON

Arguments

  • only : Array(Symbol) : like Hash#select
  • except : Array(Symbol) : like Hash#reject
  • methods : Array(Symbol) : calls the methods on the model, merges them into serialized JSON

Usage

class Person < ActiveModel::Model
  attribute name : String

  def cool_name
    {"Bill", "Jill"}.includes?(@name)
  end
end

person = Person(name: "Jill")

# Calls methods and merges results as fields into serialized JSON
person.as_json(methods: [:cool_name]) # => "{\"name\":\"Jill\",\"cool_name\": true}"
@caspiano caspiano added the enhancement New feature or request label Apr 10, 2019
@dukenguyenxyz dukenguyenxyz changed the title #as_json feat: #as_json Jan 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant