Rails as_json with conditions

前端 未结 2 889
说谎
说谎 2020-12-12 00:07

In my application, :foos have many :bars, and I\'m serializing each foo as JSON like so:

@foo.as_json(
  except: [:created_at, :upd         


        
2条回答
  •  醉梦人生
    2020-12-12 00:24

    you use as_json with conditions for customize json response for some actions, but model serializers for default json response that you needed for the most responses.

    Read these Model_Serializer VS. as_json, record-serializers-from-scratch.

提交回复
热议问题