我有一个Rails应用程序的麻烦,我继承的,我没有经验的Rails。它使用JBuilder从MySQL数据库返回JSON响应。我更新了应用程序,将几个新列添加到数据库中,类型为DECIMAL(10,2)。问题是,当我请求JSON时,该值将作为字符串返回。如果我使用DECIMAL(10,0),那么它将作为一个数字返回。有没有办法强迫JBuilder返回一个数字?在下面的示例中,相关的参数是game_score。
主计长的有关部分:
# GET /game
# GET /game.json
def index
if params[:since]
since_datetime = Time.parse(params[:since])
@game = current_user.game.where(["updated_at >= ? and deleted is not true", since_datetime])
else
@game = current_user.game.where('deleted is not true')
end
endindex.json.jbuilder文件:
json.array!(@game) do |game|
json.extract! game, :id, :game_date, :game_score, :game_location, :game_team, :game_referee
json.url game_url(game, format: :json)
end当MySQL数据类型为DECIMAL(10,2)时,JSON
[{"id":4814,"game_date":"2014-09-10T15:51:00.000Z","game_score":"1.55","game_location":null,"game_team":"Team 1","game_referee":null, "url":"http://[ip]/game/4814.json"}]当MySQL数据类型为DECIMAL(10,0)时,JSON
[{"id":4814,"game_date":"2014-09-10T15:51:00.000Z","game_score":1,"game_location":null,"game_team":"Team 1","game_referee":null, "url":"http://[ip]/game/4814.json"}]发布于 2014-09-02 10:49:53
最简单的方法是手动编写该字段,例如:
json.game_score game.game_score.to_fhttps://stackoverflow.com/questions/25621470
复制相似问题