$.post設置請求頭接收html
在使用$.post發送數據請求時,我們可以設置請求頭來接收html格式的數據,具體方法如下:
$.post(url, data, function(response) { console.log(response); }, 'html');
其中,'html'參數表示要接收的數據格式為html。如果不設置或設置為其他格式,那么響應體中的數據將以文本格式返回。
另外,我們也可以通過設置請求頭來接收json格式的數據,具體方法如下:
$.ajax({ url: url, type: 'POST', data: data, dataType: 'json', success: function(response) { console.log(response); }, error: function(jqXHR, textStatus, errorThrown) { console.log(textStatus, errorThrown); } });
其中,dataType參數設置為'json'表示要接收的數據格式為json。如果不設置或設置為其他格式,那么響應體中的數據將會以文本格式返回。