當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ng-jhipster.DataUtils類代碼示例

本文整理匯總了TypeScript中ng-jhipster.DataUtils的典型用法代碼示例。如果您正苦於以下問題:TypeScript DataUtils類的具體用法?TypeScript DataUtils怎麽用?TypeScript DataUtils使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了DataUtils類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: setFileData

 setFileData(event, attachment, field, isImage) {
     if (event.target.files && event.target.files[0]) {
         const file = event.target.files[0];
         if (isImage && !/^image\//.test(file.type)) {
             return;
         }
         this.dataUtils.toBase64(file, (base64Data) => {
             attachment[field] = base64Data;
             attachment[`${field}ContentType`] = file.type;
         });
     }
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:12,代碼來源:attachment-dialog.component.ts

示例2: setFileData

 setFileData(event, attachment, field, isImage) {
     if (event.target.files && event.target.files[0]) {
         const file = event.target.files[0];
         attachment = new Attachment();
         attachment['boName'] ='product';
         attachment['boId'] = this.boId;
         attachment['name'] = file.name;
         attachment['size'] = file.size;
         if (isImage && !/^image\//.test(file.type)) {
             return;
         }
         this.dataUtils.toBase64(file, (base64Data) => {
             attachment[field] = base64Data;
             attachment[`${field}ContentType`] = file.type;
             this.upload(attachment);
         });
     }
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:18,代碼來源:product-attachment.component.ts

示例3: setFileData

 setFileData(event, isImage) {
     if (event.target.files && event.target.files[0]) {
         const file = event.target.files[0];
         if (isImage && !/^image\//.test(file.type)) {
             return;
         }
         let attachment = new Attachment();
         this.dataUtils.toBase64(file, (base64Data) => {
             attachment.content = base64Data;
             attachment.contentContentType = file.type;
         });
         attachment.boName = "Product";
         attachment.boId = 1;
         this.attachmentService.create(attachment)
                                .subscribe((res: Attachment) =>
                                    this.onCreateAttachmentSuccess(res), (res: Response) => this.onSaveError(res));
     }
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:18,代碼來源:product-dialog.component.ts

示例4: openFile

 openFile(contentType, field) {
     return this.dataUtils.openFile(contentType, field);
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:3,代碼來源:email-template-detail.component.ts

示例5: byteSize

 byteSize(field) {
     return this.dataUtils.byteSize(field);
 }
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:3,代碼來源:email-template-detail.component.ts


注:本文中的ng-jhipster.DataUtils類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。