このため使用jqueryの:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
とエラーを処理するための速記なしに機能
$(document).ready(function(){
$.post('localhost:5000/registrar', {
"enrollId": "jim",
"enrollSecret": "6avZQLwcUe9b"
}, function(serverResponse){
//do what you want with server response
})
})
同じことを呼び出す:
$.ajax({
type: "POST",
url: 'localhost:5000/registrar',
data: {
"enrollId": "jim",
"enrollSecret": "6avZQLwcUe9b"
},
success: function(){$('#register').html('<h1>Login successfull</h1>');},
error: function(){$('#register').html('<h1>Login error</h1>');},
dataType: dataType
});
私は私の.htmlで
を持っているのであれば、私がしなければならないのは、関数(serverResponse)の下に$(#register).append(serverResponse)ですか? – Alvinまあ、私はあなたのサーバーの応答が何であるかわかりませんが、htmlの場合はyesです。 –
200 OK { "OK":ユーザー 'jim'のログインに成功しました。 } これは想定される応答です。 – Alvin