Socket.io-client: “意外的标记

创建于 2015-05-14  ·  5评论  ·  资料来源: socketio/socket.io-client

当我按如下方式加载客户端库时:

所有5条评论

src="js/socket.io.js"

它必须是src="/socket.io/socket.io.js"

我使用这个 html 文件得到了同样的错误:

<!doctype html>
<html lang="en">
<head>
  <!-- The first thing in any HTML file should be the charset -->
  <meta charset="utf-8">
  <!-- Make the page mobile compatible -->
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- Allow installing the app to the homescreen -->
  <link rel="manifest" href="manifest.json">
  <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css">
  <meta name="mobile-web-app-capable" content="yes">
  <title>AP Flora</title>
</head>
<body>
<!-- The app hooks into this div -->
<div id="app"></div>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- A lot of magic happens in this file. HtmlWebpackPlugin automatically includes all assets (e.g. bundle.js, main.css) with the correct HTML tags, which is why they are missing in this HTML file. Don't add any assets here! (Check out webpackconfig.js if you want to know more) -->
<script src="/socket.io/socket.io.js"></script>
<script>
  const socket = io()
  console.log(`socket:`, socket)
</script>
</body>
</html>

我究竟做错了什么?

它在我使用时有效:

<script src="https://cdn.socket.io/socket.io-1.4.0.js"></script>

什么是正确的网址?

在本地调用 socket.io.js,当我使用 browserify 编译正确的所需文件时它起作用了。 另一种方法是使用 _socket.io-client_ 中的库

此页面是否有帮助?
0 / 5 - 0 等级