我想将 JSON 数据发布到 url,但下面提到的代码没有将数据发布到服务器。
我正在使用 python 瓶框架和 WSGI 服务器。
它没有接收 JSON 数据并且 WSGI 服务器给出 405 错误。
脚本
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$("#hi").click(function(){
var jsonObjects ='{"type":["FORGOT_PASSWORD"],"data":[{"hardwareID":"SAM1234567890123","emailID":"v@gmail.com"}]}';
jQuery.ajax({
url: "http://192.168.0.135:8080/uid",
type: "POST",
contentType: "application/json",
data: JSON.stringify(jsonObjects),
success: function(result) {
//Write your code here
}
});
});
});
</script>
HTML
<input type="button" value="submit" id="hi" />
<p>If you click on me, I will disappear.</p>