제 7 장 사용자 등록 까지
2051 단어 Rails
여기서 일해요.
http://localhost:3000/users
데이터베이스 액세스
The action 'index' could not be found for UsersController
다음으로 표시controler에 index가 없나요?
controllers/users_controller.rb
중간
def index
end
덧붙이다다시 한번
데이터베이스 액세스
undefined local variable or method
index' for UsersController:Classhttp://localhost:3000/users
이렇게 해서 성공적인 ver를 만들어 보고 싶었지만 역시 Routing error가 나타났습니다.
`$ bundle exec rspec spec/requests/user_pages_spec.rb\
-e "signup with valid information"
No DRb server is running. Running in local process instead ...
Run options: include {:full_description=>/signup\with\valid\information/}
F
Failures:
1) User pages signup with valid information should create a user
Failure/Error: before { visit signup_path }
ActionController::RoutingError:
undefined local variable or method
index' for UsersController:Class
# ./app/controllers/users_controller.rb:3:in
'# ./app/controllers/users_controller.rb:1:in
<top (required)>'
# ./spec/requests/user_pages_spec.rb:24:in
block (3 levels) in 'Finished in 0.01528 seconds
1 example, 1 failure
Failed examples:
rspec ./spec/requests/user_pages_spec.rb:42 # User pages signup with valid information should create a user
Randomized with seed 11922
ganshou-no-MacBook-Air:sample_app02 takako$ `
Reference
이 문제에 관하여(제 7 장 사용자 등록 까지), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kota810/items/87fc1aa269412d40eae2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)