2
Node中以下瀏覽器端GET請求的等效內容是什麼?GET請求,帶數據
jQuery.ajax({
url: 'http://test.com',
type: 'GET',
data: myData,
success: function(data) {
console.log(data);
}
});
我最好的嘗試是
http.get('http://test.com', function(response) {
response.on('data', function (chunk) {
console.log(chunk);
});
});
的問題是我不知道如何在節點版本通過data: myData
。我如何將數據傳遞給http.get
請求?