使用jbuilder 这个gem出现bug: Render :json without a template
format.json {
render :plain => {success:true}.to_json, status: 200, content_type: 'application/json'
}
如果直接render :json 会报template missing 这个错误。所以要用以上的格式 render :plain
Click to Start
使用jbuilder 这个gem出现bug: Render :json without a template
format.json {
render :plain => {success:true}.to_json, status: 200, content_type: 'application/json'
}
如果直接render :json 会报template missing 这个错误。所以要用以上的格式 render :plain