节点错误-不允许加载本地资源

时间:2019-02-16 04:14:11

标签: javascript socket.io

我正在使用socket.io制作聊天应用程序。当我要提取客户端文件时,会出现以下错误:

  

不允许加载本地   资源:文件:/// C:/%20/Users/x/Desktop/Node%20Code/Chat%20Bot/node_modules/socket.io-client/dist/socket.io.js

我的html文件:

<!DOCTYPE html>
<!doctype html>
<html>
  <head>
    <title>Chat App</title>
    <script src="file:///C: \Users\x\Desktop\Node Code\Chat Bot\node_modules\socket.io-client\dist\socket.io.js"></script>
  </head>
  <body>


  </body>
</html>

1 个答案:

答案 0 :(得分:0)

您将无法从项目目录或用户级别目录中加载资源,因此会出现错误“无法访问本地资源错误”。

将文件放在项目的根文件夹中,然后尝试引用它。会起作用