VisualStudio 2017:TypeScript断点不起作用

时间:2017-09-04 14:09:12

标签: debugging typescript asp.net-core .net-core visual-studio-2017

使用.NET Core 2的标准SPA项目模板。

dotnet new knockout

此模板为located here 当我按IIS Express运行项目时,部分断点正在运行,但另一部分无效。例如,它适用于Router类:

constructor(history: History.History, routes: Route[]) {
    // Reset and configure Crossroads so it matches routes and updates this.currentRoute
    crossroads.removeAllRoutes(); <- here a breakpoint works
    crossroads.resetState();

但是fetch-data.ts没有消息&#34;这个断点当前不会被击中。没有为此文档加载符号&#34;

constructor() {
    fetch('/api/SampleData/WeatherForecasts') <-- A breakpont doesn't work
        .then(response => response.json() as Promise<WeatherForecast[]>)
        .then(data => {
            this.forecasts(data);
        });
}

有什么想法吗?

0 个答案:

没有答案