Node.jsでapp.jsを介してurlに飛びたいのですが、Cannot GET /job となってしまいます。localhostは表示できますが、app.get('/', (req, res) => {res.render('top.ejs');});も反映されていない状況です。わかる方がいましたら教えていただけますと幸いです。よろしくお願いします。
appjs
1const express = require('express'); 2const mysql = require('mysql'); 3 4const app = express(); 5 6app.use(express.static('public')); 7app.use(express.urlencoded({extended: false})); 8 9const connection = mysql.createConnection({ 10 host: 'localhost', 11 user: 'root', 12 password: '0', 13 database: 'Recruit' 14}); 15 16app.get('/', (req, res) => { 17 res.render('top.ejs'); 18}); 19 20app.get('/job', (req, res) => { 21 res.render('job.ejs'); 22}); 23 24app.listen(4099);
topejs
1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Recruit</title> 6 <link rel="stylesheet" href="/css/style.css"> 7 <script src="/send_url.js"></script> 8 </head> 9 <body> 10 <button><a href="/job">詳細を見る</a></button> 11 </body> 12</html>
jobejs
1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Recruit</title> 6 <link rel="stylesheet" href="/css/style.css"> 7 <script src="/send_url.js"></script> 8 </head> 9 <body> 10 -略- 11 </body> 12</html>
このような全体です。 Recruit node_modules public css style.css images views job.ejs top.ejs app.js package-lock.json package.json
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。