我有两种观点:welcome.html
和resources.html
。两者都有
<ng-include src="'ui/admin/partials/header.html'"></ng-include>
在最顶端。当要显示它时,welcome.html
会对标头发出成功的XHR请求并显示其内容。奇怪的是,resources.html
没有 - 控制台中没有出现标题请求 - 只是单独成功请求resources.html
。 resources.html
的内容显示没有问题,它是缺少的标题。
两种观点之间的唯一区别是welcome.html
包含ui-sref
resources.html
视图。我知道链接有效,因为它确实需要我resources.html
,只是缺少标题。
当我在ng-include
welcome.html
中为src
属性提供不存在的部分时,控制台会返回404.当我尝试使用resources.html
时,没有返回此类错误,resources.html
只有200。因此,在我看来,ng-include
中的resources.html
没有请求标题部分。
那么我该如何解决这个问题?