您好
我认为问题已经被提出,但我找不到任何可以帮助我的事情。
所以在这里你有一个用jquery执行的AJAX请求
$.ajax({
type:"GET",
async:false,
data: {pageSize:1000},
url:BRAPI_V1_URL_ENDPOINT + URL_CALLS,
traditional:true,
timeout:TIMEOUT,
success:function(jsonResponse) {
var dataList = getDataList(jsonResponse);
mainLoop: for (var i=0; i<REQUIRED_CALLS.length; i++)
{
for (var j=0; j<dataList.length; j++)
if (dataList[j] != null && REQUIRED_CALLS[i] == dataList[j]['call'])
continue mainLoop;
unimplementedCalls.push(REQUIRED_CALLS[i]);
}
},
error:function(xhr, ajaxOptions, thrownError) {
errorMsg = "No BrAPI source found at " + BRAPI_V1_URL_ENDPOINT + " (error code " + xhr.status + ")"
}
});
您可以看到我们在编写请求时可以提供数据参数 在这里,我将{pageSize:1000}作为参数。 现在我使用fecth来发出我的Ajax请求,但我不知道用fecth给出一个或多个参数的方法。这是我的问题!
由于