我已生成rails 5 api应用程序.但我希望我的应用程序与主页.为此,我生成了一个家庭控制器并添加了视图文件i各自的views / home / index.html.erb
但是,当我尝试访问它时,我得到的回应低于响应
Started GET “/home/index” for 127.0.0.1 at 2016-07-14 11:14:03 +0530
Processing by HomeController#index as HTML Completed 204 No Content in
0msStarted GET “/home/index.js” for 127.0.0.1 at 2016-07-14 11:14:20
+0530 Processing by HomeController#index as JS Completed 204 No Content in 0ms
请分享您的想法.
解决方法
我在同一条船上,试图做一个Rails 5 API应用程序仍然可以从单个html页面引导(由JS在加载时接管).从
rails source窃取提示,我创建了以下控制器(注意它使用Rails’而不是我的ApplicationController用于这个单独的非api控制器)
require 'rails/application_controller' class StaticController < Rails::ApplicationController def index render file: Rails.root.join('public','index.html') end end
并将相应的静态文件(普通.html,而不是.html.erb)放在公用文件夹中.我还补充道
get '*other',to: 'static#index'
在routes.rb的末尾(在我的所有api路由之后),为重新加载,深层链接等保留客户端路由.
如果没有在routes.rb中设置root,Rails将直接从public调用/并且将在非api路由上命中静态控制器.根据你的用例,添加public / index.html(在routes.rb中没有root)可能就足够了,或者你可以通过使用没有奇怪的StaticController来实现类似的东西
get '*other',to: redirect('/')
相反,如果你不关心路径保存.
我很想知道是否有其他人有更好的建议.