在我的公共控制器中,我有:
def index
@super = "test"
respond_to do |format|
format.html
format.js
end
end
我index.js.erb
在views/public 文件夹中为索引操作创建了一个。
但是当我访问http://localhost:3000/.js
我明白了No route matches [GET] "/.js"
这以前在旧版本的导轨上工作过......