如何使用角度 js 将动态内容显示在 ck 编辑器中

How to display dynamic content into ck editor using angular js

本文关键字:显示 ck 编辑器 动态 何使用 js      更新时间:2023-09-26
ck editor text area
<textarea cols="100" id="editor1" name="editor1" rows="50" data-ng-model="report.reportlist">
</textarea>
<div>{{ report.reportlist }}</div>

我在div 内部获得值,但不在 ck 编辑器中获取值

我的控制器

$scope.report.reportlist = data ;
data = <p><h1>PRO/AH/EDR> African swine fever - Belarus (03): (HR) 1st rep, OIE, RFI</h1><br/><br/><p>African Swine Fever &mdash; Worldwide/Unknown<br/></p>

我不明白为什么它没有显示在 CK 编辑器中.我正在使用角度 js

它不起作用,因为 CKEditor 中的内容实际上并不在文本区域本身中(文本区域元素被隐藏)。为了使作用域变量和 CKeditor 保持同步,您需要侦听 CKEditor 事件并相应地更新作用域变量。
我在这里做了一个快速演示:http://jsbin.com/iMoQuPe/2/edit

.HTML:

<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div ng-controller="CkCtrl">
    <textarea name="editor" id="" cols="30" rows="10" ng-model="editorData"></textarea>
    <pre>
      {{ editorData }}
    </pre>
  </div>
  <script src="http://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.0.1/ckeditor.js"></script>
  <script>
    CKEDITOR.replace( 'editor' );
  </script>
</body>
</html>

JavaScript:

function CkCtrl($scope) {
  // Load initial data, doesn't matter where this comes from. Could be a service
  $scope.editorData = '<h1>This is the initial data.</h1>';
  var editor = CKEDITOR.instances.editor;
  // When data changes inside the CKEditor instance, update the scope variable
  editor.on('instanceReady', function (e) {
    this.document.on("keyup", function () {
      $scope.$apply(function () {
        $scope.editorData = editor.getData();
      });
    });
  });
}