修改后的文件不会在devtools上更新

时间:2018-11-12 09:48:01

标签: javascript angular google-chrome google-chrome-devtools

我在js文件中具有此功能:

setClickable: function() {
  this.map.removePolyline(this, true);
  this.map.addPolyline(this);
}

此js文件已正确导入angular5项目中。

当我为项目提供服务并触发此功能时,在devtools中,我看到以下代码:

setClickable: function() {
  this.map.removePolyline(this); <-- that's the old file without that modification
  this.map.addPolyline(this);
}

由于此js文件是在ISS中提供的,因此这是一个http请求,但是在“网络”标签上,我看到的是正确的文件:

enter image description here

这是“源”选项卡上的样子:

enter image description here

您可以看到removePolyline方法缺少, true部分。

我已经尝试了一切。重新启动电脑,清理缓存,关闭并重新打开浏览器。我没有其他想法了。

有人可以帮助我吗?

0 个答案:

没有答案