在html中看起来像这样:
1,Z007,sample text says good morning
但是如何从Java HttpURLConnection发送它? 我的代码:
$.ajax({
url : 'http://www.mclista.pl/json/daj_diax/',
type : 'POST',
data : {
'id_serwera' : '39914',
'csrf_mclista_token' : 'b7b96922dba267733168629d9f5ba6d7'
},
dataType : 'JSON',
success : function(result) {
if (result.status == 'ok') {
$('#glosow_'+id).html(parseInt($('#glosow_'+id).html()) + 1);
}else if(result.status == 'juz_glosowal')
alert('Możesz dać tylko jednego diax-a na jeden serwer.');
}
});
它返回不允许的键字符。我不知道该怎么做,因为我几乎尝试了所有操作(请记住,从html开始工作) 成功发送Cookie的HTTP请求: COOKIES