18

我有一个带有多个标签的标签页,一旦单击调用服务以返回一些数据。其中一些数据返回 html 表单并且非常随机。我想收集那些输入的值并通过服务将数据发送回服务器。我遇到的问题是我无法从动态创建的 html 中的输入元素中获取数据。

我创建了一个Plunker来显示问题所在。请注意,html 值可以随时更改,因此对 html 进行硬编码将不起作用。这是来自 plunker 的代码,但请查看 plunker 以获得最佳视图。

应用程序.js

var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope, $sce, $compile) {
    $scope.name = 'World';
    $scope.html = "";

    $scope.htmlElement = function(){
        var html = "<input type='text' ng-model='html'></input>";
        return $sce.trustAsHtml(html);
    }

});

索引.html

<!DOCTYPE html>
<html ng-app="plunker">

  <head>
    <meta charset="utf-8" />
    <title>AngularJS Plunker</title>
    <script>document.write('<base href="' + document.location + '" />');</script>
    <link rel="stylesheet" href="style.css" />
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular.js"></script>
    <script src="app.js"></script>
  </head>

  <body ng-controller="MainCtrl">
    <p>Hello {{name}}!</p>

    <div ng-bind-html="htmlElement()"></div>

    {{html}}

  </body>

</html>
4

3 回答 3

26

一种解决方案是将 ngInclude 与 $templateCache 一起使用,如此Plunker中所示。

有几点需要注意。

第一个是您可以使用服务获取模板并将其添加到 $templateCache,如此所述(复制示例):

myApp.service('myTemplateService', ['$http', '$templateCache', function ($http, $templateCache) {
  $http(/* ... */).then(function (result) {
    $templateCache.put('my-dynamic-template', result);
  });
}]);

然后您可以将其包含在您的模板中,如下所示:

<div ng-include="'my-dynamic-template'"></div>

ngInclude 将允许对 html 字符串进行数据绑定,因此您不需要 ngBindHtml。

第二个是,当 ngInclude 创建一个新范围时,访问html新创建范围之外的属性将无法正常工作,除非您通过父范围上的对象访问它(例如ng-model="data.html",而不是ng-model="html". 请注意,$scope.data = {}父范围中的在这种情况下,是什么使 html 可以在 ngInclude 范围之外访问。

(有关为什么应该始终在 ngModel 中使用点的更多信息,请参阅此答案。)


编辑

正如您所指出的,在使用服务返回 HTML 时,ngInclude 选项的用处要小得多。

这是使用 $compile 的基于指令的解决方案的编辑plunker ,如上面大卫的评论。

相关补充:

app.directive('customHtml', function($compile, $http){
  return {
    link: function(scope, element, attrs) {
      $http.get('template.html').then(function (result) {
        element.replaceWith($compile(result.data)(scope));
      });
    }
  }
})
于 2013-11-08T21:38:02.337 回答
6

根据莎拉的回答,我创建了一个结构来放置指令

.directive('dynamic', function(AmazonService, $compile) {
  return {
    restrict: 'E',
    link: function(scope, element, attrs) {
      AmazonService.getHTML()
     .then(function(result){
       element.replaceWith($compile(result.data)(scope));
     })
     .catch(function(error){
       console.log(error);
     });
   }
 };
});

在html中:

<dynamic></dynamic>

谢谢莎拉,帮了大忙!!!

于 2014-07-22T20:45:31.320 回答
0

我有一个带有一些 ng-repeat 的动态表,然后当我尝试用 javascript 回调函数填充一列时,它给我的只是 html 文本

<td class="tableList_"+myValue> "span class=someclass> some_text /span>" </td>
<td class="tableList_"+myValue> "span class=someclass> some_text /span>" </td>
<td class="tableList_"+myValue> "span class=someclass> some_text /span>" </td>

所以我用jquery解决了我的问题:

$(".tableListFilas td").each(function() {
    var td_class = $(this).attr("class");

    if(td_class == 'tableList_'+titulo)
    {
         var toExtraHtml = $(this).text();
         $(this).html(toExtraHtml);
    }
});

然后最终输出很好:

<td class="tableList_COLORS"> <span class=someclass>some_text</span> </td>
<td class="tableList_COLORS"> <span class=someclass>some_text</span> </td>
<td class="tableList_COLORS"> <span class=someclass>some_text</span> </td>  
于 2016-05-13T13:02:07.627 回答