使用FetchAPI访问SonarQube API不会返回任何结果

时间:2018-05-29 06:15:36

标签: javascript sonarqube fetch fetch-api sonarqube-scan

我正在尝试通过Fetch访问SonarQube API,但它似乎没有响应任何结果。它只是用不透明的令牌解析。

让我分享到目前为止我所做的事情:

fetch("http://localhost:9000/api/issues/search?pageSize=500&componentKeys=bactch_analysis_key",{
            mode:'no-cors'
        }) // Call the fetch function passing the url of the API as a parameter
            .then(
                res => res.json()
            )
            .then(data => {
                console.log(data);
            })
            .catch(err =>  {
                console.log(err);
            });

我将mode设置为no-cors,因为它引发了ACAO错误。

当从chrome打开或通过Postman检查时,相同的URL工作正常。

这是诺言解决时的结果: enter image description here

以下是我从catch子句中获得的错误:

SyntaxError: Unexpected end of input
    at fetch.then.res (index.html:51)

0 个答案:

没有答案