我的p5.js
和sketch.js
腳本都不會加載。什麼是從node.js服務器加載腳本的正確src =屬性
我index.html
由Node.js
裝我想我在我的HTML標籤<script>
濫用src
值。 我的p5.js
腳本已上升一級,並且名爲P5
的文件夾中,並且我的sketch.js
文件位於與此index.html
文件相同的目錄中的文件夾P5Scripts
中。
在Chrome控制檯,我得到這個消息: Loading failed for the <script> with source 「http://45.76.140.199:3000/P5/p5.js」.
和
Loading failed for the <script> with source 「http://45.76.140.199:3000/P5Scripts/sketch.js」.
我可以看到我的src
屬性是錯誤的,但什麼是加載這些正確的方法腳本?
index.html:
<!doctype html>
<html>
<head>
<title>My Website</title>
</head>
<script src="../P5/p5.js"></script>
<script src="P5Scripts/sketch.js"></script>
<body>
</body>
</html>
我基本上希望Node.js最終在P5中觸發事件,但現在我只想將p5加載到屏幕上:) –
從html中您將只使用普通的javascript。然後,您將使用前端的ajax處理您的觸發器事件,並將所需的信息發送到後端。然後纔是nodejs的時間。 –