http://localhost:3000/bookmarks is not displayed.

Asked 2 years ago, Updated 2 years ago, 73 views

I'm studying Ruby on rails, but I'm using http://localhost:3000/bookmarks to create TODOLIST apps.
However, when I accessed the above URL while working on it, it was not displayed anymore.
Could you tell me how to deal with this?

Currently, we have entered the "rails server" command and the server is up.

ruby-on-rails ruby

2022-09-30 21:10

1 Answers

Looking at the terminal screen, I think the server stopped working on the line with binding.pry in the index action of app/controllers/bookmarks_controller.rb.

because the server did not respond.

If you enter continue or を+D at the terminal and leave the line that stopped binding.pry, or comment out the line with binding.pry written on it and re-access it, you will see it.

Note: http://qiita.com/k0kubun/items/b118e9ccaef8707c4d9f#pry-byebug

Terminal Screen


2022-09-30 21:10

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.