我会删除终端的heroku登录,所以我使用命令:
heroku accounts: remove mylogin
但他告诉我: That account is the current account, set Reviews another account first.
如何删除登录?
谢谢
我的道路有问题,我不明白为什么他告诉我"Dashboard :: TasksController",因为在我的控制器文件中包含文件dashbaord/tasks.rb
class TasksController < ApplicationController
def add_task
@t = "test"
end
Run Code Online (Sandbox Code Playgroud)
结束
在我的配置/路由文件中,我这样做了
match '/dashboard/add-task' => "dashboard/tasks#add_task", via: [:get, :post]
Run Code Online (Sandbox Code Playgroud)
在文件夹视图视图/ dashbaord/tasks/add_task.html.erb中
所以我没有看到或者是我的错误.
谢谢