我正在使用需要ng-bind-html
的角形表情符号插件。我正在使用这个表情符号插件来创建消息,但是我不想要它,以便可以编译诸如<h2>hello</h2>
之类的html代码,但是必须使用ng-bind-html来使用表情符号插件。任何建议/方法我可以解决这个问题,以便帖子将包括表情符号,但不包括编译的HTML代码?感谢
angular.module("app", ["dbaq.emoji","ngSanitize"]).controller("AppCtrl", function ($scope) {
$scope.message = "Animals: :dog: :cat: :snake: People: :smile: :confused: :angry: Places: :house: :school: :hotel: :poop:";
});
&#13;
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="emoji.min.css">
<script src="angular.min.js"></script>
<script src="emoji.min.js"></script>
</head>
<body ng-app="app" ng-controller="AppCtrl">
<div ng-bind-html="message | emoji"></div>
</body>
</html>
&#13;
表情符号插件 - &gt; https://github.com/dbaq/angular-emoji-filter-hd
答案 0 :(得分:0)
试试我的简单解决方案: 1.像这样创建文件html:
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="emoji.min.css">
<script src="angular.js"></script>
<script src="angular-sanitize.js"></script>
<script src="emoji.min.js"></script><script src="script.js"></script>
</head>
<body ng-app="app" ng-controller="AppCtrl">
<textarea ng-model="message"></textarea><div ng-bind-html="message | emoji"></div>
</body>
注意: 我嵌入了名为angular-sanitize.js的文件js。复制here并另存为angular-sanitize.js。然后是其他文件'emoji.min.css,angular.js&amp; emoji.min.js'存在于您的应用中。请注意你的道路。
2.创建名为script.js的js文件,如下所示:
angular.module("app", ["emoji","ngSanitize"]).controller("AppCtrl", ['$scope', function ($scope) {
$scope.message = "Animals: :dog: :cat: :snake: People: :smile: :confused: :angry: Places: :house: :school: :hotel: :poop:";}]);
3.Run it。