对于我的AngularJS应用程序,我需要使用jQuery插件http://www.wysibb.com。
我尝试使用$("#replyContents").bbcode();
这个函数应该从replyContents
获取内容并给我BBCode值。
我想要做的是在我controller
内部我将范围设置为:
function controlForum($scope) {
$scope.contents = $("#replyContents").bbcode();
$scope.btnReply = function() {
console.log($scope.contents);
}
}
然而,只返回null,没有。
我已经包含了jQuery,因为我可以在页面上的控制器外面调用$("#replyContents").wysibb(wbbOpt);
。
如何让bbcode
函数在我的Angular函数中工作?
答案 0 :(得分:3)
更好的方法是使用编写为本机AngularJS指令的文本编辑器。 textAngular非常好。
如果你真的必须使用jQuery插件,那么你可以使用类似Angular UI Utils JQuery Passthrough的东西,或者你可以创建自己的指令。
以下是使用您自己的指令的示例。要将编辑器的内容与应用于textarea的ng-model同步,您可以要求ngModel,然后使用ngModel API的$ setViewValue根据某个事件更新模型。在这个例子中,我在'编辑器中触发了一个keyup事件时更新。 div,单击工具栏上的其中一个按钮时。
显然,如果您想使用此编辑器执行上传图像文件之类的操作,则必须添加不同类型的侦听器/处理程序。
angular.module('jqueryplugin.demo', ['wysibb']);
angular.module('jqueryplugin.demo')
.controller('MainCtrl', ['$scope', function($scope){
$scope.logIt = function(val) {
console.log(val);
};
}]);
angular.module('wysibb', [])
.directive('wysibb', function(){
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, element, attrs, ngModel) {
var textarea, editor, buttons;
var options = {
buttons: 'bold,italic,underline'
};
textarea = element.wysibb(options);
editor = element.next();
buttons = element.parents('.wysibb').find('.wysibb-toolbar');
editor.on('keyup', function(){
scope.$apply(function(){
ngModel.$setViewValue(editor.html());
});
});
buttons.on('click', function(){
scope.$apply(function(){
ngModel.$setViewValue(editor.html());
});
});
}
};
});

@import url(//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css);
@import url(http://cdn.wysibb.com/css/default/wbbtheme.css);
textarea {
min-height: 130px;
}

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://code.angularjs.org/1.3.16/angular.js"></script>
<script src="http://cdn.wysibb.com/js/jquery.wysibb.min.js"></script>
<div ng-app="jqueryplugin.demo">
<div ng-controller="MainCtrl">
<textarea ng-model="text" wysibb></textarea>
<pre>Output: <code>{{text}}</code></pre>
</div>
</div>
&#13;