rails路由的模板选项

时间:2017-03-19 12:16:02

标签: ruby-on-rails routes ruby-on-rails-5

假设我的<!DOCTYPE html> <html ng-app="store"> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> </head> <body ng-controller="StoreController as store"> <div ng-repeat="product in store.products"> <h1>{{product.name}}</h1> <h2>${{product.price}}</h2> <p>{{product.description}}</p> <button ng-show="product.canPurchase">Add to cart</button> </div> <script src="js/angular.min.js"></script> <script src="js/app.js"></script> </body> </html>文件中有以下内容

routes.rb

我收到以下错误

unexpected keyword_do_block, expecting => ategory", json_request_only do
                                                                       ^

我要做的是在路由中使用一些模板选项。

问题:

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我很确定你必须合并像这样的选项

resources :item_types, json_request_only.merge(path: "category") do