所以我必须通过$.ajax
查询API。我在我的网站上有大量的查询,都尊重相同的模式。
我只有一个不想解雇的人,我真的不明白为什么。
以下是我的功能代码:
static create(handleResponse) {
console.log('starting creating product');
let settings = {
"url": apiURL + "/relsalesorderproducts/",
"method": "POST ",
"headers": {
"token": localStorage.getItem('ms-token'),
"Content-Type": "application/x-www-form-urlencoded",
}
};
$.ajax(settings).done(function (response) {
console.log('created product');
handleResponse(response);
});
}
我没有在控制台中看到日志'创建的产品',我确实看到'开始创建产品'日志,但我甚至看不到在Developer工具的Network部分中发出的请求,就像我在其他每一个请求,都没有。
你们认为这会导致什么?
答案 0 :(得分:3)
我认为可能只是在"POST "