我想成爲從我的反應的組分一個bundle.js
文件,但文件爲什麼沒有被送達我不確定。我使用Express和與這些文件的項目:Express服務器不能服務我bundle.js
project
/dist
bundle.js
/views
/home
index.ejs
/routes
index.js
app.js
在我app.js
,我試圖以服務bundle.js
:
DIST_DIR = path.join(__dirname, 'dist')
app.use(express.static(DIST_DIR));
我簡單views/home/index.ejs
樣子:
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel='stylesheet' href='css/styles.css'/>
</head>
<body id="main-page">
<div class="container">
</div>
<script src="bundle.js"></script>
</body>
</html>
我使用終於GET
的頁面在我routes/index.js
:
var express = require('express');
var router = express.Router();
router.get('/', function(req, res, next) {
res.render('home/index.ejs');
});
module.exports = router;
這是我app.js
var express = require("express");
path = require("path"),
cookieParser = require('cookie-parser'),
bodyParser = require('body-parser');
index = require('./routes/index'),
app = express();
DIST_DIR = path.join(__dirname, 'dist'),
app.use(express.static(DIST_DIR));
app.use('/', index);
app.set('views', path.join(__dirname, 'views')),
app.set('view engine', 'ejs');
module.exports = app;
但我回來一個錯誤:空響應每當我嘗試加載頁面。我錯過了一些東西,不確定在哪裏。任何幫助,將不勝感激。
以上的更新,因爲我的意思是寫bundle.js的代碼片段,而不是index.js – user7050542
你得到這個錯誤_only_爲'bundle.js'請求,或整個頁面?錯誤指向'app.js'中的一個問題,但是如果沒有更多信息(比如路由/路由器配置等)很難說。 – robertklep
@robertklep我只收到bundle.js請求的錯誤。否則整個頁面加載正常。我已經添加了我的app.js以獲取更多上下文。 – user7050542