2 Template Engineを使用してショッピングモールのリストを作成します.


1.ショッピングサイトのページを閲覧する。


:template engineを使用してショッピングモールの最初のページを描きます.

2.静的ファイルを追加します。


https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/node.js/week03/public.zip
:静的フォルダを「ダウンロード」>「圧縮品」>「共通フォルダ」に挿入します.

3. index.変更

  • ejsを使用してホームページ
  • を作成
    
    app.get('/home', (req, res) => {
      res.render('index'); 
    })
    家に入る経路はindexです.ejsでレンダリングします.