我想在JavaScript中使用web套接字創建一個基本的聊天應用程序。我在各種搜索引擎上搜索了很多,但我沒有找到任何可以幫助我的東西。如何從Web套接字開始?
我正在使用Wamp服務器,並沒有安裝NODE.js。
- 我可以在Wamp上創建應用程序嗎?
- 如何爲Web套接字編寫服務器代碼?
注意:我知道客戶端代碼的Web套接字,但不從哪裏開始與服務器代碼? 我需要的代碼可以是PHP或JavaScript。 以下是我編寫的基本客戶端代碼。
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
function WebSocketTest()
{
if ("WebSocket" in window)
{
alert("WebSocket is supported by your Browser!");
// Let us open a web socket
var ws = new WebSocket("ws://localhost:9998/echo");
ws.onopen = function()
{
// Web Socket is connected, send data using send()
ws.send("Message to send");
alert("Message is sent...");
};
ws.onmessage = function (evt)
{
var received_msg = evt.data;
alert("Message is received...");
};
ws.onclose = function()
{
// websocket is closed.
alert("Connection is closed...");
};
}
else
{
// The browser doesn't support WebSocket
alert("WebSocket NOT supported by your Browser!");
}
}
</script>
</head>
<body>
<div id="sse">
<a href="javascript:WebSocketTest()">Run WebSocket</a>
</div>
</body>
</html>
我會推薦以下免費視頻課程:https://www.codeschool.com/courses/real-time-web-with-node-js –
爲什麼不使用socket.io for nodejs – Inventillect