3

我在 app.js 中定义了不同的控制器和相应的模板 url:

var App = angular.module('FormApp', [ 'ngRoute','ui.bootstrap', 'dialogs', 'oc.modal' ]);

App.config([ '$routeProvider', function($routeProvider) {
    $routeProvider.when('/addClient', {
        templateUrl : '../../resources/partialHtml/addClientLayout.html',
        controller : FormController
    }).when('/conflist/:commandName/:client/:env', {
        templateUrl : '../../resources/partialHtml/testPrase.html',
        controller : TestParseController
    }).when('/addNewCommand', {
        templateUrl : '../../resources/partialHtml/addNewCommand.html',
        controller : AddNewCommandController
    })
} ]);

我的 TestParseController 定义如下:

var TestParseController = function($scope, $window, $http, $routeParams, $sce,
        $compile) {

    $scope.hide = function(obj) {
        alert($routeParams.commandName);
    };

    $scope.to_trusted1 = function(html_code) {
        html_code = $sce.trustAsHtml(html_code);
        $scope.content = html_code;
        alert(html_code);
        $compile( document.getElementById('innerh'))($scope);
    };

    $http.get('client/getConfList/' + $routeParams.commandName)
    .success(
            function(data) {
            $scope.html_content = "<button data-ng-click='hide($event)'>Click me!</button>";
            $scope.to_trusted1($scope.html_content);
                });
}

html:testParse.html:

<h3 data-ng-click="hide($event)" class="plus">Add</h3>

<div ng-bind-html="content" id="innerh">    </div>

div 得到正确填充,但 ng-click 填充按钮不起作用,但它适用于页面本身可用的 h3 标签。

有人请帮忙..

4

2 回答 2

1

更改使用以下内容而不是(并从 innerh div 中删除)填充innerh div的方式:$scope.contentng-bind-html

document.getElementById('innerh').innerHTML = html_code;

进入to_trusted1函数:

 $scope.to_trusted1 = function(html_code) {
        html_code = $sce.trustAsHtml(html_code);
        $scope.content = html_code;
        //alert(html_code);
        document.getElementById('innerh').innerHTML = html_code;

  };

jsfiddlehttps ://jsfiddle.net/m37xksxk/

解决方案 2

一种更 AngularJS 的方式可能是使用$timeout.

您可以使用它来确保内容包含在 div 中。您还必须获取 div 中的内容,因为这就是要编译的内容,使用angular.element(document.getElementById('innerh')).contents()::

所以会变成:

    $timeout( function(){ 
        $compile( angular.element(document.getElementById('innerh')).contents())
           ($scope);
        }, 0);

jsfiddle 2https ://jsfiddle.net/m37xksxk/1/

于 2015-03-27T14:36:42.600 回答
0

您是否有理由不创建指令?您的实现非常混乱。这是我在 jsfiddle 中创建的内容:

http://jsfiddle.net/5qa6uy2y/

app.directive('testContent', function () {
    return {
        template: "<button data-ng-click='hide($event)'>Click me!</button>"
    };
});
于 2015-03-27T16:09:17.233 回答