更改没有得到更新ng-include

时间:2016-02-17 10:44:26

标签: angularjs

我是Angular JS的新手。我试图通过使用ng-include在profiletest.html中包含profile.html。

以下是我的profiletest.html的代码

profiletest.html

  <body>
    <div ng-app="guestProfileApp">
      <div ng-controller="guestProfileController">
            <button ng-click="getProfile(401)">Show Profile</button>  
            <ng-include ng-if="showProfile" src="'profile.html'"></ng-include>
       </div>
  </div>

当我对profile.html代码进行更改时,当我在浏览器中刷新profiletest.html时,更改没有得到更新。

1 个答案:

答案 0 :(得分:0)

您可以停用浏览器缓存 - 在右下角的Chrome开发工具中点击齿轮并勾选该选项。

禁用缓存(当DevTools打开时)

在Firefox中,Debugger中有相同的选项 - &gt;设置 - &gt;高级部分 (不确定它是否适用于Firefox。很多人说这对他们不起作用)