我有以下函数,它假设与另一台服务器交谈,检索json数据并显示它的问题是函数甚至没有启动查询我是在做什么冤枉?代码上传到apache tomcat服务器,我使用wireshark进行跟踪,http端口上没有这里是代码
$(document).ready( function() {
var home_add='http://wcf.net:3300/gateway';
$('#handshake').click(function(){
alert(" sending json data");
function handshake(){ /*testing the function */
var data_send = {
"supportedConnectionTypes": "long-polling",
"channel": "/meta/handshake",
"version": "1:0"
};
$.ajax({ /* start ajax function to send data */
url:home_add,
type:'POST',
datatype:'json',
contanttype:'text/json',
async: false,
error:function(){ alert("handshake didn't go through")}, /* call disconnect function */
data:JSON.stringify(data_send),
success:function(data){
$("p").append(data+"<br/>");
alert("successful handshake")
}
})
}
})})
提前感谢您的反馈 熔岩
答案 0 :(得分:0)
$(document).ready(function () {
var home_add = 'http://wcf.net:3300/gateway';
$('#handshake').click(function () {
alert(" sending json data");
$.ajax({ /* start ajax function to send data */
url: home_add,
type: 'POST',
datatype: 'json',
contanttype: 'text/json',
async: false,
error: function () { alert("handshake didn't go through") }, /* call disconnect function */
data: {
"supportedConnectionTypes": "long-polling",
"channel": "/meta/handshake",
"version": "1:0"
},
success: function (data) {
$("p").append(data + "<br/>");
alert("successful handshake")
}
});
});
});
答案 1 :(得分:0)
如果您使用的是Internet Explorer,则可以在头部
的jsp页面中添加以下代码<script src="https://github.com/douglascrockford/JSON-js/blob/master/json2.js" />
尝试这个并检查,可能会起作用。