1

モデル

def to_json
  p 'ppp'
  p UNDISPLAYABLE_SIGNS
  if sign.in? UNDISPLAYABLE_SIGNS
    {code: code}
  else
    super
  end
end

コントローラ

    render json: {currency: @currency, savedInUser: true}

ppp がサーバー コンソールに表示されません。JSON 応答をカスタマイズするにはどうすればよいですか?

4

1 に答える 1

1

as_json は to_json ではありません

def as_json
  p 'ppp'
  p UNDISPLAYABLE_SIGNS
  if sign.in? UNDISPLAYABLE_SIGNS
    {code: code}
  else
    super
  end
end
于 2013-04-18T22:59:35.017 に答える