TextAngular fileDropHandler文档

时间:2015-01-07 09:32:50

标签: angularjs textangular

我们刚刚将textangular升级到1.2.2,因为现在支持拖放。

在textAngualrSetup中看到了defaultFileDropHandler,但是,努力找到支持它或如何使用它的任何文档。

defaultFileDropHandler:
    /* istanbul ignore next: untestable image processing */
    function (file, insertAction)
    {
        debugger;
        var reader = new FileReader();
        if(file.type.substring(0, 5) === 'image'){
            reader.onload = function() {
                if(reader.result !== '') insertAction('insertImage', reader.result, true);
            };

            reader.readAsDataURL(file);
            return true;
        }
        return false;
    }

基本上,我们希望允许用户拖动多个pdf,word文档等,并在提交时上传。

我们可能会在设置页面中以一种方式将功能添加到defaultFileDropHandler中来解决这个问题,

我们通过以下方式实施ta: -

<div text-angular data-ng-model="NoteText" ></div>
然而,是否有更清洁的方法来实现这一目标?

2 个答案:

答案 0 :(得分:9)

抱歉缺少文档!

基本上,当触发HTML element.on("drop")事件时会触发defaultFileDropHandler。

通过textAngularSetup文件实现这一点很好,但是将全局应用于所有实例。要仅为textAngular的一个实例应用处理程序,请使用ta-file-drop属性,该属性应该是作用域上与defaultFileDropHandler具有相同签名的函数的名称。例如:

JS In Controller

$scope.dropHandler = function(file, insertAction){...};

HTML

<div text-angular data-ng-model="NoteText" ta-file-drop="dropHandler"></div>

答案 1 :(得分:2)

两个都很好的答案,谢谢!

我只想把完整的代码用于覆盖全局案例,因为代码只是一个片段......

app.config( function( $provide ) {
    $provide.decorator( 'taOptions', [ '$delegate', function( taOptions ) {

        taOptions.defaultFileDropHandler = function( file, insertAction ) {
            // validation
            if( file.type.substring( 0, 5 ) !== "image" ) {
                // add your own code here
                alert( "only images can be added" );
                return;
            }
            if( file.size > 500000 ) {
                // add your own code here
                alert( "file size cannot exceed 0.5MB" );
                return;
            }

            // create a base64 string
            var reader = new FileReader();
            reader.onload = function() {
                reader.result && insertAction( "insertImage", reader.result, true );
            };

            reader.readAsDataURL(file);
            return true;
        };

        return taOptions;
    }]);
});