乐趣区

关于前端:SAP-UI5-FileUploader-的隐藏-iframe-设计明细

其实现代码地位如下:

    /**
     * Helper to retrieve the I18N texts for a button
     * @private
     */
    FileUploader.prototype.getBrowseText = function() {

        // as the text is the same for all FileUploaders, get it only once
        if (!FileUploader.prototype._sBrowseText) {var rb = sap.ui.getCore().getLibraryResourceBundle("sap.ui.unified");
            FileUploader.prototype._sBrowseText = rb.getText("FILEUPLOAD_BROWSE");
        }

        return FileUploader.prototype._sBrowseText ? FileUploader.prototype._sBrowseText : "Browse...";

    };

从上图能够看出,SAP UI5 框架从一个 library 文件里,依据 key FILEUPLOAD_BROWSE 读取其对应值,后果为 Browse... 这个字符串。

上图 1854 行的三元表达式,代表的逻辑是,如果从 library 文件里依据 key FILEUPLOAD_BROWSE 读取失败,则返回硬编码的默认值 Browse...

SAP UI5 FileUploader 控件所属的 sap.ui.unified 整个库的资源文件地位:https://sapui5.hana.ondemand….

对于 SAP UI5 全球化,多语言和翻译的反对,请参阅 Jerry 的教程:SAP UI5 利用开发教程之八 – 多语言的反对

在 FileUploader 的 onAfterRendering 钩子里,执行 prepareFileUploadAndIFrame

首先为 file upload 做筹备:

不要把这个 this.oFileUpload 同之前的 this.oFilePath 相混同。

这个 aFileUpload 是存储最初渲染出原生 HTML 源代码的场合。

最初生成的源代码:

'<input', 'type="file"','aria-hidden="true" ','name="myFileUpload" ','id="__xmlview0--fileUploader-fu" ','tabindex="-1" ','size="1" ','title="Upload&#x20;your&#x20;file&#x20;to&#x20;the&#x20;local&#x20;server" ','>'
            this.oFileUpload = jQuery(aFileUpload.join("")).prependTo(this.$().find(".sapUiFupInputMask")).get(0);

下面代码通过 jQuery 代码查找的 css 类:sapUiFupInputMask,在 elements 面板里地位如下:

最初 this.oFileUpload 指向 jQuery 通过 css 选择器返回的 dom 实例:

也就是这个 input 字段:

<input type="file" aria-hidden="true" name="myFileUpload" id="__xmlview0--fileUploader-fu" tabindex="-1" size="1" title="Upload your file to the local server">

创立暗藏的 iframe,并且插入到 static area 里:

给这个暗藏的 iframe 注册 load 事件:

点击 Browse... 按钮之后,会弹出抉择本地文件的对话框:

而后触发 handlechange,应用 var uploadForm = this.getDomRef("fu_form"); 拿到 form 实例:

通过事件对象的 target.files 字段,拿到用户抉择好的本地文件。

抛出一个 change 事件:

退出移动版