lite-server 不在 /js 文件夹内提供 .js 文件 - 浏览器不请求 /js 文件
lite-server not providing .js file inside /js folder - browser doesnt request /js file
我是 运行 一个 lite-server
和 npm run lite
我的jQuery文件正常加载,我的css也在css文件夹中,但是浏览器甚至不对[=14=发出GET请求] 文件。
main.js
文件位于 /js 文件夹中,如 style.css
和 /css 文件夹中一样
我是不是漏掉了什么?
这是我的HTML
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" scr="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
test
</body>
</html>
编辑: -> 刚刚也意识到浏览器没有对此文件发出 GET 请求。而且如果我直接向 js 文件发出请求,服务器 returns 它。
和 npm run lite
运行:
$ npm run lite
> sdfa@1.0.0 lite C:\temp\nodeIntro
> lite-server
Did not detect a `bs-config.json` or `bs-config.js` override file. Using lite-server defaults...
** browser-sync config **
{ injectChanges: false,
files: [ './**/*.{html,htm,css,js}' ],
watchOptions: { ignored: 'node_modules' },
server: { baseDir: './', middleware: [ [Function], [Function] ] } }
[BS] Access URLs:
------------------------------------
Local: http://localhost:3000
External: http://192.168.1.4:3000
------------------------------------
UI: http://localhost:3001
UI External: http://192.168.1.4:3001
------------------------------------
[BS] Serving files from: ./
[BS] Watching files...
17.03.11 12:52:27 304 GET /index.html
17.03.11 12:52:27 304 GET /node_modules/jquery/dist/jquery.min.js
17.03.11 12:52:27 304 GET /node_modules/jquery/dist/jquery.js
17.03.11 12:52:27 304 GET /css/style.css
您输错了 src scr
错误
正确
<script type="text/javascript" src="js/main.js"></script>
我是 运行 一个 lite-server
和 npm run lite
我的jQuery文件正常加载,我的css也在css文件夹中,但是浏览器甚至不对[=14=发出GET请求] 文件。
main.js
文件位于 /js 文件夹中,如 style.css
和 /css 文件夹中一样
我是不是漏掉了什么?
这是我的HTML
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" scr="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
test
</body>
</html>
编辑: -> 刚刚也意识到浏览器没有对此文件发出 GET 请求。而且如果我直接向 js 文件发出请求,服务器 returns 它。
和 npm run lite
运行:
$ npm run lite
> sdfa@1.0.0 lite C:\temp\nodeIntro
> lite-server
Did not detect a `bs-config.json` or `bs-config.js` override file. Using lite-server defaults...
** browser-sync config **
{ injectChanges: false,
files: [ './**/*.{html,htm,css,js}' ],
watchOptions: { ignored: 'node_modules' },
server: { baseDir: './', middleware: [ [Function], [Function] ] } }
[BS] Access URLs:
------------------------------------
Local: http://localhost:3000
External: http://192.168.1.4:3000
------------------------------------
UI: http://localhost:3001
UI External: http://192.168.1.4:3001
------------------------------------
[BS] Serving files from: ./
[BS] Watching files...
17.03.11 12:52:27 304 GET /index.html
17.03.11 12:52:27 304 GET /node_modules/jquery/dist/jquery.min.js
17.03.11 12:52:27 304 GET /node_modules/jquery/dist/jquery.js
17.03.11 12:52:27 304 GET /css/style.css
您输错了 src scr
错误
正确
<script type="text/javascript" src="js/main.js"></script>