无法使用$ compile编译Dynamic Html

时间:2019-02-21 04:14:35

标签: javascript html angularjs dynamic-html

我正在尝试使用以下几行将动态html添加到我的代码中

var el = $compile('<a ng-controller=\"tableController\" ng-click=\"open\">...ReadMore</a>')($scope);

但是会产生以下错误 enter image description here

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

您错过了open方法的括号,下面的代码应该可用。

var el = $compile('<a ng-controller=\"tableController\" ng click=\"open()\">...ReadMore</a>')($scope);