search.ejs 1.13 KB
<!DOCTYPE html>
<html lang="en" dir="ltr">

<head>
  <meta charset="utf-8">
  <title>Test</title>
</head>

<body>
  <h1><a href="/food">점심메뉴 정하기</a></h1>
    <h2>
      <%= title %>
    </h2>
    <ul>
      <il><a href="/food/search">검색</a></il><br>
      <il><a href="/food/recommendation">추천</a></il>
    </ul>
    <p><%= description %></p>
    <article>
          <form action='/food' method='post'>
            <!--제출된 정보를 보내는 역할
            get으로 보내는 경우 (url)querystring으로 전달됨.
            기본 초기값이 get임
            post방식은 눈에 보이지 않는 방식으로 전달
            post는 bodyParser모듈에서 받을 수 있음
          -->
            <p>
              검색 :
              <input type="text" name="title" placeholder="검색">
              <!--
              get인 경우 req.query.title로 전달
              post인 경우 req.body.title로 전달
              req.body.<name>
              -->
            </p>

            <p>
              <input type="submit">
            </p>

          </form>
        </article>
</body>

</html>