如何在ng-model中获得nicEdit textarea内容?

时间:2017-03-31 11:14:42

标签: textarea angular-ngmodel nicedit ob-get-contents

我是Angular和html开发的新手。所以我还不知道所有功能和代码术语。

我创建了一个包含丰富textarea字段的表单。我使用nicEdit,因为这是mycompany推荐的那个(因此不能更改编辑器)。 如下图所示,nicEdit运行良好。

但是当我想在ng-model中获得字段内容时,它并不起作用。 大多数论坛Q& A都表明ng-model与nicEdit textarea无法正常工作。我找到了一个关于创建指令的东西。所以我尝试修改一个专用于ckEditor的程序。 但它不起作用。我发现$(' div.nicEdit-main')更新了div(但不是我的字段htmlLondDesc附加到nicEdit textarea,而不是ng-model)。

我还发现了一些关于nicEditors.findEditor(' htmlLongDesc')的内容.getContent();但我不知道在ng-model中使用它的位置......

那么如何获取nicEdit的内容并将其保存在ng-model中呢? 在此先感谢您的帮助。

Here is an image of the text area 这是我的js和html代码:



scApp.directive('ncGetContent', function () {
    return {
        require: 'ngModel',
        link: function (scope, elm, attr, ngModel) {
          var content = $('div.nicEdit-main').html();
          if (!ngModel) return;
          content.on('instanceReady', function () {
            content.setData(ngModel.$viewValue);
          });
          function updateModel() {
            scope.$apply(function () {
              ngModel.$setViewValue(content.getData());
            });
          }
          content.on('change', updateModel);
          content.on('key', updateModel);
          content.on('dataReady', updateModel);
    
          ngModel.$render = function (value) {
            content.setData(ngModel.$viewValue);
            
          };
        }
      };
    });
 

  <head>
    <script type="text/javascript">
    bkLib.onDomLoaded(function() {
    var myEditor = new nicEditor({buttonList : ['bold','italic','underline','subscript','superscript','forecolor','bgcolor']}).panelInstance('htmlLongDesc');
    var nicInstance = nicEditors.findEditor('htmlLongDesc');
    });
    </script>
 </head>
 
 ...
 
  <textarea id="htmlLongDesc" cols="140" rows="6" name="htmlLongDesc"  ng-model="user.htmlLongDesc" ncGetContent ></textarea>
                        
&#13;
&#13;
&#13;

0 个答案:

没有答案