48

我确信以前有人问过这个问题,但我找不到答案。

我有一个 AngularJS 脚本,它从数据库中提取然后呈现到内容。一切正常,除了几个地方我试图用它们之间的新行连接一些单词。

 **in the script.js**
groupedList[aIndex].CATEGORY = existingCategory+'\n'+thisCategory;
groupedList[aIndex].CATEGORY = existingCategory+'<br>'+thisCategory;

如果我使用上述代码的第一行,我什么也看不到,但重新编写的 html 中没有新行。如果我使用第二行,则<br>get 呈现为文本,输出如下所示:

Instinct<br>Media

代替

Instinct
Media

如果有帮助,我可以发布完整的脚本,但我猜有一些简单的东西我只是没有看到。

更新 这是完整的js

function qCtrl($scope, $filter, $http, $timeout){

    $scope.getCategories = function(){$http.post('quote.cfc?method=getCategories').success(function(data) { $scope.categories = data; });   }
    $scope.getClassifications = function(){$http.post('quote.cfc?method=getClassifications').success(function(data) {   $scope.classifications = data;  }); }
    $scope.getIndustries = function(){$http.post('quote.cfc?method=getIndustries').success(function(data) { $scope.industries = data;   }); }
    $scope.getKeywords = function(){$http.post('quote.cfc?method=getKeywords').success(function(data) { $scope.keywords = data; }); }
    $scope.getSources = function(){$http.post('quote.cfc?method=getSources').success(function(data) {   $scope.sources = data;  }); }

    $scope.getAllQuotes = function(){$http.post('quote.cfc?method=getAllQuotesJoined').success(function(data) { $scope.allQuotes = data;    }); }

    $scope.initScopes = function (){
        $scope.getCategories();
        $scope.getClassifications();
        $scope.getIndustries();
        $scope.getKeywords();
        $scope.getSources();
        $scope.getAllQuotes();
    }   
    $scope.initScopes();

    // SEARCH QUOTES
    $scope.filteredQuotes = $scope.allQuotes;
    $scope.search = {searchField:''};

    $scope.searchQuote = function(){
        var filter = $filter('filter');
        var searchCrit = $scope.search;
        var newlist = $scope.allQuotes;
        var groupedList = [];
        var idList = [];
        newlist = filter(newlist,{TESTQUOTE:searchCrit.searchField});
        for(i=0;i<10;i++){
            aIndex = idList.contains(newlist[i].TESTIMONIALID);
            if(aIndex >= 0){
                thisKeyword = newlist[i].KEYWORD;
                thisClassification = newlist[i].CLASSIFICATION;
                thisCategory = newlist[i].CATEGORY;
                existingKeyword = groupedList[aIndex].KEYWORD;
                existingClassification = groupedList[aIndex].CLASSIFICATION;
                existingCategory = groupedList[aIndex].CATEGORY;
                if(thisKeyword != '' && existingKeyword.indexOf(thisKeyword) == -1){
                    groupedList[aIndex].KEYWORD = existingKeyword+' - '+thisKeyword;
                } 
                if(thisClassification != '' && existingClassification.indexOf(thisClassification) == -1){
                    groupedList[aIndex].CLASSIFICATION = existingClassification+' \n '+thisClassification;
                } 
                if(thisCategory != '' && existingCategory.indexOf(thisCategory) == -1){
                    groupedList[aIndex].CATEGORY = existingCategory+'<br>'+thisCategory;
                }               
            } else {
                idList.push(newlist[i].TESTIMONIALID);
                groupedList.push(newlist[i]);
            }
        }
        $scope.filteredQuotes = groupedList;
      }
}
Array.prototype.contains = function ( needle ) {
   for (j in this) {
       if (this[j] == needle) return j;
   }
   return -1;
}

这是HTML

<div ng-repeat="q in filteredQuotes" class="well clearfix">
                        <h3>{{q.TITLE}}</h3>
                        <div class="row-fluid" style="margin-bottom:5px;">
                            <div class="span3 well-small whBG"><h4>Classification</h4>{{q.CLASSIFICATION}}</div>
                            <div class="span3 well-small whBG pipeHolder"><h4>Categories</h4>{{q.CATEGORY}}</div>
                            <div class="span3 well-small whBG"><h4>Key Words</h4>{{q.KEYWORD}}</div>
                            <div class="span3 well-small whBG"><h4>Additional</h4>Industry = {{q.INDUSTRY}}<br>Source = {{q.SOURCE}}</div>
                        </div>
                        <div class="well whBG">{{q.TESTQUOTE}}</div>
                        <div class="tiny">
                            Source comment : {{q.SOURCECOMMENT}}<br>
                            Additional Comment : {{q.COMMENT}}
                        </div>
                    </div>
                </div>
4

6 回答 6

56

您可以使用\n来连接单词,然后将此样式应用于容器 div。

style="white-space: pre;"

更多信息可以在https://developer.mozilla.org/en-US/docs/Web/CSS/white-space找到

<p style="white-space: pre;">
    This is normal text.
</p>
<p style="white-space: pre;">
    This 
  text 
  contains 
  new lines.
</p>

于 2015-04-17T21:21:18.953 回答
41

我可能是错的,因为我从未使用过 Angular,但我相信您可能正在使用ng-bind,它只会创建一个 TextNode。

你会想ng-bind-html改用。

http://docs.angularjs.org/api/ngSanitize.directive:ngBindHtml

更新:看起来你需要使用ng-bind-html-unsafe='q.category'

http://docs.angularjs.org/api/ng.directive:ngBindHtmlUnsafe

这是一个演示:

http://jsfiddle.net/VFVMv/

于 2013-02-19T17:23:59.607 回答
25

您需要使用ng-bind-html-unsafe... 或者您需要包含 ngSanitize 模块并使用ng-bind-html

使用 ng-bind-html-unsafe

如果您信任您正在呈现的 HTML 的源代码,请使用它,它将呈现您放入其中的任何内容的原始输出。

<div><h4>Categories</h4><span ng-bind-html-unsafe="q.CATEGORY"></span></div>

或使用 ng-bind-html

如果您不信任 HTML 的来源(即它是用户输入),请使用此选项。它将清理 html 以确保它不包含诸如脚本标签或其他潜在安全风险来源之类的内容。

确保包括以下内容:

<script src="http://code.angularjs.org/1.0.4/angular-sanitize.min.js"></script>

然后在您的应用程序模块中引用它:

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

然后使用它:

<div><h4>Categories</h4><span ng-bind-html="q.CATEGORY"></span></div>
于 2013-02-19T19:03:20.647 回答
3

为什么这么复杂?

我以这种方式简单地解决了我的问题:

  <pre>{{existingCategory+thisCategory}}</pre>

<br />如果字符串包含我从 textarea 保存数据时包含的 '\n',它将自动生成。

于 2016-01-11T06:57:28.207 回答
2

我这样用过

function chatSearchCtrl($scope, $http,$sce) {
 // some more my code

// take this 
data['message'] = $sce.trustAsHtml(data['message']);

$scope.searchresults = data;

在html中我做了

<p class="clsPyType clsChatBoxPadding" ng-bind-html="searchresults.message"></p>

就是这样,我得到了我的<br/>标签

于 2015-02-18T05:43:36.470 回答
0

您还可以使用:

String.fromCharCode(10);

与 CSS

white-space: pre-line;

这里是工作示例: https ://jsfiddle.net/Nxja/3xtcqdej/1/

于 2021-10-28T12:11:33.377 回答