我连接到url,它在~5分钟内执行某些操作,同时无法连接到此站点,因为http请求使用相同的地址进行通信
我用java脚本中的ajax运行python代码。
java脚本代码: var structure = { $:jQuery.noConflict(),
ExecuteUpdateData: function () {
var $ = this.$,
me = this;
$.ajax({
type: 'POST',
url: '/ExecuteUpdateData/',
}).done(function (result) {
if (result != "Succeeded")
alert('Failed to update data, the error message: ' + result)
$("#update_data").attr("class", "update_data_on");
});
}
} Python代码: def UpdateData(a): 打印'更新数据'
res = False
global_server = 'http://10.184.197.149:8055'
try:
response = urllib2.urlopen(global_server)
url_res = response.read()
except Exception, e:
print(e)
return HttpResponse(e.message)
return HttpResponse(url_res.strip())
答案 0 :(得分:0)
问题是由"任务"用于打开网址的C#代码