TinyMCE <textarea>与AngularJS双向绑定</textarea>

时间:2013-11-15 16:23:15

标签: angularjs binding tinymce

是否可以将双向绑定应用于已为其应用TinyMCE进行RTF格式化的<textarea></textarea>

我无法上班!我可以让TinyMCE加载我的模型的内容,但是当我更新TinyMCE中的文本时,我的模型不会自动更新!

有办法吗?任何帮助将不胜感激。

谢谢。

2 个答案:

答案 0 :(得分:5)

您可以通过创建自己的指令来完成此操作。

当TinyMCE编辑器中的某些内容发生变化时,您需要做的是让您的指令同步您的模型。我没有使用TinyMCE,但是Wysihtml5。我想你可以重新制作这个以使用TinyMCE。

angular.module('directives').directive('wysihtml5', ['$timeout',
function ($timeout) {
    return {
        restrict: 'E',
        require: 'ngModel',
        template: "<textarea></textarea>", // A template you create as a HTML file (use templateURL) or something else...
        link: function ($scope, $element, attrs, ngModel) {

            // Find the textarea defined in your Template
            var textarea = $element.find("textarea");

            // When your model changes from the outside, use ngModel.$render to update the value in the textarea
            ngModel.$render = function () {
                textarea.val(ngModel.$viewValue);
            };

            // Create the editor itself, use TinyMCE in your case
            var editor = new wysihtml5.Editor(textarea[0],
                {
                    stylesheets: ["/style.css"],
                    parserRules: wysihtml5ParserRules,
                    toolbar: true,
                    autoLink: true,
                    useLineBreaks: false,
                });

            // Ensure editor is rendered before binding to the change event
            $timeout(function () {

                // On every change in the editor, get the value from the editor (textarea in case of Wysihtml5)
                // and set your model
                editor.on('change', function () {
                    var newValue = textarea.val();

                    if (!$scope.$$phase) {
                        $scope.$apply(function () {
                            ngModel.$setViewValue(newValue);
                        });
                    }
                });

            }, 500);
        }
    };
}]);

然后你可以在你的html页面中使用这个指令:

<wysihtml5 ng-model="model.text" />

如果您需要有关创建自己的指令的更多信息,请点击以下链接:http://docs.angularjs.org/guide/directive

答案 1 :(得分:0)

还将上述指令中的渲染函数与angular-ui-tinymce(https://github.com/angular-ui/ui-tinymce

中的此渲染函数进行比较
ngModel.$render = function() {
  if (!tinyInstance) {
    tinyInstance = tinymce.get(attrs.id);
  }
  if (tinyInstance) {
    tinyInstance.setContent(ngModel.$viewValue || '');
  }

Plnkr:http://plnkr.co/edit/04AFkp?p=preview

但是,根据加载DOM的时间,您可能需要在指令上设置优先级。 : - )