Post

elixir-2-phoenix-2-route

0. 작성목적

  • elixir phoenix 프레임워크로 라우팅 가이드 작성
  • db 연동하여 jwt 인증 서버 생성 목적 계속 진행

1. 시작전 필요사항

  • erlang/OTP 27
  • elixir 1.17.2

수행 요약

  • https://hexdocs.pm/phoenix/request_lifecycle.html

  • localhost:4000/hello

  • 결과


  • localhost:4000/hello/:pathvariable

  • 결과

서비스중인 routes 모두 보기

  • mix phx.routes
    1
    2
    3
    4
    5
    6
    
    C:...jwtdb>mix phx.routes
    ...
    GET    /                                      JwtdbWeb.PageController :home
    GET    /hello                                 JwtdbWeb.HelloController :index
    GET    /hello/:messenger                      JwtdbWeb.HelloController :show
    ...
    

참고

  • https://hexdocs.pm/phoenix/request_lifecycle.html#a-new-route
This post is licensed under CC BY 4.0 by the author.