我想在我的項目中使用CKEditor或TinyMCE編輯器。 所以我把TinyMCE的文件夾中的流星公用文件夾,也把如何在Meteor JS中集成TinyMCE和CKEditor?
<head>
<script type="text/javascript" src="<your installation path>/tinymce/tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
selector: "textarea"
});
</script>
模板頭標記。 但是接收到以下錯誤。 資源解釋爲腳本,但使用MIME類型text/html轉移:"http://localhost:3000/%3Cyour%20installation%20path%3E/tinymce/tinymce.min.js". (index):97
未捕獲的SyntaxError:意外的標記< tinymce.min.js:1 未捕獲的ReferenceError:TinyMCE的是沒有定義
我該如何解決這個問題? CKEditor也一樣。 有沒有其他豐富的編輯器,我可以在Meteor JS中使用?
下面是如何集成Aloha編輯器在流星,也許它可以幫助:http://stackoverflow.com/questions/13961737/using-meteor-with-requirejs/26315457#26315457 – steph643 2014-10-11 14:10:13