|
|
|
@ -33,7 +33,6 @@ export class ServeManager {
|
|
|
|
|
) => void, onError?: (key: string, error: any) => void) { |
|
|
|
|
this.buildingBISrv.getBuildingBasicInfos(key) |
|
|
|
|
.subscribe(data => { |
|
|
|
|
console.log("获取结果" + key, (data as any).result); |
|
|
|
|
if (onSuccess) { |
|
|
|
|
onSuccess(key, JSON.parse((data as any).result)); |
|
|
|
|
} |
|
|
|
@ -152,9 +151,8 @@ export class ServeManager {
|
|
|
|
|
//#region 文件上传
|
|
|
|
|
//队列性,批量上传
|
|
|
|
|
uploadFile(index: number, files: File[], resPath_out, onOneSuccess: (name: string, path: string, file: File) => void, onEnd: () => void) { |
|
|
|
|
|
|
|
|
|
console.log("上传路径", resPath_out); |
|
|
|
|
if (index < files.length) { |
|
|
|
|
//console.log("上传文件", files[index].name);
|
|
|
|
|
ServeManager.instance.openFileSelect(files[index], resPath_out, (name: string, path: string, file: File) => { |
|
|
|
|
onOneSuccess(name, path, file); |
|
|
|
|
this.uploadFile(index + 1, files, resPath_out, onOneSuccess, onEnd); |
|
|
|
@ -198,8 +196,8 @@ export class ServeManager {
|
|
|
|
|
let dataObj = data as any; |
|
|
|
|
let fileName = dataObj.fileName; |
|
|
|
|
let filePath: string = dataObj.objectName;//此路径不全,前面缺少ObjectsService.baseUrl,这部分不可序列化,要在运行时拼接
|
|
|
|
|
//console.log("上传完成,地址为", filePath);
|
|
|
|
|
filePath = filePath.replace(fileName, "");//去掉结尾的文件名
|
|
|
|
|
console.log("上传完成,地址为", filePath); |
|
|
|
|
//filePath = ObjectsService.baseUrl + filePath;
|
|
|
|
|
ServeManager.instance.onGetPostFileResult(fileName, filePath, file); |
|
|
|
|
resolve('success') |
|
|
|
@ -225,8 +223,9 @@ export class ServeManager {
|
|
|
|
|
* @param file
|
|
|
|
|
*/ |
|
|
|
|
postFileByMul(file: File) { |
|
|
|
|
ServeManager.instance.objectsSrv.postFile_MultipartUpload(ServeManager.ngAssetsPath + this.postFilePath, file).then((value) => { |
|
|
|
|
ServeManager.instance.objectsSrv.postFile_MultipartUpload(this.postFilePath, file).then((value) => { |
|
|
|
|
let dataObj = value as any; |
|
|
|
|
console.log("分块上传完成", dataObj.filePath); |
|
|
|
|
dataObj.filePath = dataObj.filePath.replace(dataObj.name, ""); //去掉结尾的文件名
|
|
|
|
|
ServeManager.instance.onGetPostFileResult(dataObj.fileName, dataObj.filePath, file); |
|
|
|
|
}); |
|
|
|
|