示例/ LIB / D3 / d3.js
示例/ SRC / scatterPlotVersion3 / index.html中
示例/ CSS / styles.css的
http-server(https://github.com/nodeapps/http-server)
的index.html
<link rel="stylesheet" type="text/css" href="../../css/styles.css"/>
<script type="text/javascript" src="../../lib/d3/d3.js"></script>
转到localhost:8080。我收到以下错误:
[Error] Failed to load resource: the server responded with a status of 404 (Not Found) (styles.css, line 0)
[Error] Failed to load resource: the server responded with a status of 404 (Not Found) (d3.js, line 0)
[Error] ReferenceError: Can't find variable: d3 global code (localhost, line 16)
我该如何解决这个问题?
答案 0 :(得分:3)
我现在看到的解决方案是在父目录中运行http-server,然后在子目录中运行服务器访问文件。
说:我有一个src文件夹,里面有我的示例文件夹有index.html文件。 src还包含我想在index.html中使用的abc.js。