Angularjs集成第三方插件 Uploadify

有时候需要用一些第三方插件,比如datepicker,slider,或者tree等。以前的做法是直接通过jquery取得某个元素,然后调用某个方法即可。但在angularjs中,不能直接这么写,必须写在directive中。

angularJs第三方插件 http://ngmodules.org 开源项目Angular-ui( https://github.com/angular-ui/angular-ui)中已经集成了很多第三方插件,大家有兴趣的可以去看看,接下来我要说的是如何在Angular中集成Uploadify

var snailApp= angular.module("snail",[....]);
 
snailApp.directive("snailUploadify", function() {
    return {
        require: '?ngModel',
        restrict: 'A',
        link: function ($scope, element, attrs, ngModel) {
            var opts = angular.extend({}, $scope.$eval(attrs.nlUploadify));
            element.uploadify({
                'fileObjName': opts.fileObjName || 'upfile',
                'auto': opts.auto!=undefined?opts.auto:true,
                'swf': opts.swf || '/Plugin/uploadify/uploadify.swf',
                'uploader': opts.uploader || '/Admin/Uploader/ImageUp',//图片上传方法
                'buttonText': opts.buttonText || '本地图片',
                'width': opts.width || 80,
                'height': opts.height || 25,
                'onUploadSuccess': function (file, d, response) {
                    if (ngModel) {
                        var result = eval("[" + d + "]")[0];
                        if (result.state == "SUCCESS") {
                            $scope.$apply(function() {
                                ngModel.$setViewValue(result.url);
                            });
                        }
                    }
                }
            });
        }
    };
});

 调用方法:

<div id="uploadifytest" class="btn" ng-model="image" snail-uploadify="{auto:false,buttonText:'图片上传'}" >
< img ng-show="image" ng-src="image"  style="height: 80px;"/>
注意:上面集成的uploadify中只调用了部分参数,大家可以根据需要添加,另外在调用该插件时必须在调用元素上添加id,否则会报“ Could not find the placeholder element”错误,楼主本人就被卡在这儿半天!鉴于楼主本人水平有限,如有错误的地方请大家指正!

 

 
 

你可能感兴趣的:(AngularJS)