对于我的朋友,代码工作正常。
function saveProfession(profession)
{
fetch('/game/saveProfession/' + profession).then(function(response)
{
if(response.status !== 200)
{
console.log('problem with ajax call!' + response.status + " msg: " +
response.value);
return;
}
response.text().then(function(data)
}
};
答案 0 :(得分:0)
你可能在最后一次&#34之后错过了一些代码;然后":
function saveProfession(profession)
{
fetch('/game/saveProfession/' + profession).then(function(response)
{
if(response.status !== 200)
{
console.log('problem with ajax call!' + response.status + " msg: " + response.value);
return;
}
response.text().then(function(data) { /* do something with data */ });
});
};
答案 1 :(得分:-1)
不应该为你的朋友工作。
response.text().then(function(data)
它错过了)
语句的结束then
。