我刚开始使用 CKEditor,并且对如何将其与 AngularJS 集成有一些疑问。下面的小提琴给了我。
http://jsfiddle.net/TheSharpieOne/fMC2p/
<div data-ng-app="app" data-ng-controller="myCtrl">
<h3>CKEditor 4.2:</h3>
<textarea data-ng-model="ckContent" data-ck-editor></textarea>
<br />
<textarea data-ng-model="ckContent" data-ck-editor></textarea>
<textarea data-ng-model="ckContent"></textarea>
<pre>{{ckContent}}</pre>
</div>
我以前使用过一个 config.js,但在这个小提琴中看不到一个。有人可以解释这是怎么可能的。我认为有必要存在 config.js 和许多其他文件。