我正在研究Arduino和ESP8266项目。 我使用单击的按钮发送请求,然后Arduino为get请求生成响应,但alertmessage没有显示。 我想" hupppaaa"在alertmessage中
这是我生成的回复。 (这是正确的答案吗?)
HTTP/1.1 200 OK
Content-Type: text/html; charset=UTF-8
Content-Length: 8
Connection: close
hupppaaa
这是请求Jquery代码。
$(document).ready(function(){
$(".led").click(function(){
var p = $(this).attr('id'); // get id value (i.e. pin13, pin12, or pin11)
// send HTTP GET request to the IP address with the parameter "pin" and value "p", then execute the function
$.get("http://192.168.0.150:80/", {pin:p}, function(data, status){
alert(" Data Loaded: " + data + "\nStatus: " + status);
}); // execute get request
});
});
答案 0 :(得分:0)
也许你应该用你的$ .get电话
这样做$.get( "http://192.168.0.150:80/", {pin:p} )
.done(function( data ) {
alert( "Data Loaded: " + data );
});