Rails Routes - Limiting the available formats for a resource

后端 未结 6 1903
孤城傲影
孤城傲影 2020-11-30 08:31

I have a series of resources that I want only available if accessed via the JS format. Rails\' route resources gives me the formats plus the standard HTML. Is there a way

6条回答
  •  一整个雨季
    2020-11-30 09:16

    If you need not only one or another than json (cant use #xhr?) I offer to you option below

    resource :offers, only: :show, format: true, constraints: { format: 'pdf' }

    Hope it helps

提交回复
热议问题