我有一个简单的ng-include,显示了一些HTML代码。但在chrome中,我经常遇到以下错误:
获取https://example.com/view.html net :: ERR_CONTENT_DECODING_FAILED
我尝试在我的web.config中添加<urlCompression doStaticCompression="false" doDynamicCompression="false"/>
来关闭gzip压缩,但它没有用。
<ng-include src="'view.html'"></ng-include>
view.html:
<section ng-show="vm.showInclude">
<h2 class="text-center">
Hello world
</h2>
</section>
有人对如何解决这个问题有任何建议吗?