--- !ruby/hash:ActionController::Parameters controller: welcome action: index
--- !ruby/hash:ActionController::Parameters controller: welcome action: index
在问这个问题之前我在网上看了很多,我不知道我做错了什么但是现在我刷新我的索引页面,这个代码显示在主页中:
--- !ruby/hash:ActionController::Parameters
controller: welcome
action: index
我怎样才能把它从那里弄出来?有人以前处理过这个问题吗?
我在这个家伙未完成的网页上找到了一个例子:
Example at the bottom of the webpage
这就是我在整个 Internet 上能找到的所有关于此的内容..
从您的控制器操作中删除 debug(...)
。您看到这个是因为您的 index
控制器操作正在调用 ActionView::Helpers::DebugHelper
。有关 DebugHelper 的更多信息 here
在问这个问题之前我在网上看了很多,我不知道我做错了什么但是现在我刷新我的索引页面,这个代码显示在主页中:
--- !ruby/hash:ActionController::Parameters
controller: welcome
action: index
我怎样才能把它从那里弄出来?有人以前处理过这个问题吗?
我在这个家伙未完成的网页上找到了一个例子:
Example at the bottom of the webpage
这就是我在整个 Internet 上能找到的所有关于此的内容..
从您的控制器操作中删除 debug(...)
。您看到这个是因为您的 index
控制器操作正在调用 ActionView::Helpers::DebugHelper
。有关 DebugHelper 的更多信息 here