使用 ng-bind-html 的 ng-click 在控制器内部不工作

ng-click not working inside the controller using of ng-bind-html

在我的代码下方 ng-click 无法正常工作,而我正在检查检查元素 ng-click 未显示,请帮助我如何操作

var app = angular.module('myApp', ['ngSanitize']);
app.controller('myCtrl', function($scope) {
    $scope.firstName = "<b ng-click=test(1)>John</b><br><b ng-click=test1(1)>Testing</b>";
  

$scope.test=function(val)
{
alert(val)
}

$scope.test1=function(val)
{
alert(val)
}

});
<!DOCTYPE html>
<html>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular-sanitize.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
 <span ng-bind-html=firstName><span>
</div>
</body>
</html>

ng-click 不工作的原因是,ng-bind-html 没有编译 div,你应该在那里使用 ng-if 或者 编译 div 并从指令而不是控制器添加该元素。

标记

<div ng-app="myApp" ng-controller="myCtrl">
  <span ng-if=showFirstName>
    <b ng-click=test(1)>John</b><br><b ng-click=test1(1)>Testing</b>
  <span>
</div>

代码

$scope.showFirstName = true;//for showing div

问题是 Angular 不会解析您 ng-bind-html 中的指令。

一个正确的解决方案是自己创建一个指令来编译你包含的html

.directive('compile', ['$compile', function ($compile) {
  return function(scope, element, attrs) {
    scope.$watch(
        function(scope) {
            return scope.$eval(attrs.compile);
        },
        function(value) {
            element.html(value);
            $compile(element.contents())(scope);
        }
    );
  };
}])

然后您可以将 firstName 引用为 <div compile="firstName"><div>

试试这个...这个 link 解决了我的问题 代码:Link 代码
添加指令

 myApp.directive('compile', ['$compile', function ($compile) 

此代码将解决您的问题。在您的控制器中添加此指令。

directive('compileTemplate', function($compile, $parse){
        return {
            link: function(scope, element, attr){
                var parsed = $parse(attr.ngBindHtml);
                function getStringValue() { return (parsed(scope) || '').toString(); }

                //Recompile if the template changes
                scope.$watch(getStringValue, function() {
                    $compile(element, null, -9999)(scope);  //The -9999 makes it skip directives so that we do not recompile ourselves
                });
            }
        }
    })

你的 HTML 将是这样的:

<div id ="section1" ng-bind-html="divHtmlVariable" compile-template></div>