我正在尝试使用 textAngular 指令将值列表粘贴到文本区域,但遇到了我无法做到的问题。出于某种原因,它在控制台中只显示了括号而没有任何错误。
我可以将数据粘贴到 textAngular 的唯一一种方法是提供路径,例如:
comparesing[0].description
直接在 textAngular 的 ng-model 中,但我需要显示值列表。那么有人可以帮我找出我的错误吗?提前致谢。
这是我的代码:
angular.module("textAngularTest", ['textAngular'])
.controller('wysiwygeditor', ['$scope', 'textAngularManager', function wysiwygeditor($scope, textAngularManager) {
(function () {
$scope.data = '[{"id":11820,"occuredDate":"2016-10-26T18:23:01.000Z","title":"Log In","description":"User 123-001 logged in"},{"id":11819,"occuredDate":"2016-10-19T18:32:07.000Z","title":"Log out","description":"User has logged off"}]'
$scope.comparesing = JSON.parse($scope.data)
$scope.orightml = '<ol ng-repeat="(key, value) in comparesing"><li>{{value.description}}</li></ol>';
}());
}]);
html
<div text-angular name="Narrate items" ng-model="orightml"></div>
这是我的错误