Chrome Canary - 网络无响应

时间:2017-12-13 21:23:41

标签: angular api typescript installation

我已经在一个角度应用程序上工作了几个月了。为了在我的计算机上运行应用程序,我进行了以下launch.json设置。

{
  "version": "0.2.0",
  "configurations": [{
    "name": "Launch Focal Tool",
    "type": "chrome",
    "request": "launch",
    "url": "http://localhost:4200",
    "sourceMaps": true,
    "runtimeExecutable": "C:/Users/oscarrod/AppData/Local/Google/Chrome SxS/Application/chrome.exe",
    "webRoot": "${workspaceRoot}",
    "runtimeArgs": [
        "--allow-file-access-from-files",
        "--user-data-dir",
        "--disable-web-security"
    ]
  }]
}

几天前,浏览器停止处理GET个请求。但奇怪的是,当API返回一个布尔值时,浏览器就能够处理它。请参阅以下图片。

1。 GetCycle API调用

API call seems to be returning nothing

2。 HasRestrictedAccess API调用

API call returns <code>true</code>

3. 如果我尝试在应用程序外部调用API,例如直接从浏览器调用它就可以了。

enter image description here

是否有人遇到此问题?

0 个答案:

没有答案