未捕获的SyntaxError:意外的令牌}(对于我的朋友,它工作正常。)

时间:2017-11-14 23:51:50

标签: javascript

对于我的朋友,代码工作正常。

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)

    }
};

2 个答案:

答案 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