使用.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);
});
}
有什么想法吗?