Error: [$compile:tplrt] 错误处理
程序员文章站
2022-03-08 08:33:31
...
第一次使用angularjs的directive指令,遇到非常气人的问题
app.directive('hello', function() {
return {
restrict: 'E',
// template: '<div>Hi there</div>',
templateUrl:'http://localhost:9090/keti/template/addKetiTemplate.html' ,
replace: true
};
});
/addKetiTemplate.html代码如下:
<div>
some stuff
</div>
<div>
some other stuff
</div>
访问报错 Error: [$compile:tplrt]
解决方法:
在两个div的外层添加一层div,如下
<div>
<div>
some stuff
</div>
<div>
some other stuff
</div>
</div>
然后就可以了
templateUrl引用的模板文件,需要一个根节点或者说根元素。不能出现并列的html元素代码,就比如两行div,等等。
推荐阅读
-
PHP全局错误处理 php 屏蔽错误 php error_reporting php 显示错误信
-
PHP严重致命错误处理:php Fatal error: Cannot redeclare class or function【转】
-
GO语言标准错误处理机制error用法实例
-
【Exception】ERROR Failed to compile with 1 errors
-
PHP 自定义错误处理函数trigger_error()
-
PHP 自定义错误处理函数trigger_error()_PHP
-
Fatal error Class 'SoapClient' not found in ...错误处理办法
-
错误处理 Error: Cannot find module 'express'
-
PHP严重致命错误处理:php Fatal error: Cannot redeclare class or function【转】
-
configure: error: cannot compute suffix of object files: cannot compile