加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – 如何在Rails中设置路由的默认格式?

发布时间:2020-12-17 03:37:51 所属栏目:百科 来源:网络整理
导读:路由的代码如下: resources :orders,only: [:create],defaults: { format: 'json' } resources :users,only: [:create,:update],defaults: { format: 'json' } resources :delivery_types,only: [:index],defaults: { format: 'json' } resources :time_cor
路由的代码如下:

resources :orders,only: [:create],defaults: { format: 'json' }
  resources :users,only: [:create,:update],defaults: { format: 'json' } 
  resources :delivery_types,only: [:index],defaults: { format: 'json' }
  resources :time_corrections,defaults: { format: 'json' }

可以使用1个字符串为所有资源设置默认格式,每行不带“defaults”哈希值?谢谢.

解决方法

尝试这样的事情:

scope format: true,defaults: { format: 'json' } do
  resources :orders,only: [:create]
  resources :users,:update] 
  resources :delivery_types,only: [:index]
  resources :time_corrections,only: [:index]
end

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读