“Rails Hide Field di JSON” Kode Jawaban

Rails Hide Field di JSON

respond_to do |format|
  format.json { render :json => @user, :except=> [:ip] } # or without format block: @user.to_json(:except => :ip)
end
Repulsive Rattlesnake

Rails Hide Field di JSON

class User < ApplicationRecord
  def as_json(options={})
    options[:except] ||= [:ip]
    super(options)
  end
end
Repulsive Rattlesnake

Rails Hide Field di JSON

class User < ActiveRecord::Base
  def to_json(options={})
    options[:except] ||= [:ip]
    super(options)
  end
end
Repulsive Rattlesnake

Jawaban yang mirip dengan “Rails Hide Field di JSON”

Pertanyaan yang mirip dengan “Rails Hide Field di JSON”

Lebih banyak jawaban terkait untuk “Rails Hide Field di JSON” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya