TCPポート番号5500をリッスンし、jsonコマンドに応答するAPIを備えたアプリケーションがあります。私がやりたいのは、JavaScriptを介してWebブラウザーからアプリケーションにjsonメッセージを送信し、アプリケーションからjson応答を受信することだけです。
私は次のようにJQueryを使用してそうしようとしました:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<form action="/" id="searchForm">
<input type="submit" value="Call" />
</form>
<!-- the result of the search will be rendered inside this div -->
<div id="result"></div>
<script>
/* attach a submit handler to the form */
$("#searchForm").submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
/* get some values from elements on the page: */
var $form = $( this ),
term = '{"type" : "command","command" : "call","target" :"demo@vsee.com"}',
url = "http://localhost:5500";
/* Send the data using post and put the results in a div */
$.post( url, term);
});
</script>
しかし、それは機能していません、
何か案が?