From fb04e7c01d119c60632b4298d18fd93f3ccb3d79 Mon Sep 17 00:00:00 2001 From: Li Jun <buli@deloitte.com.cn> Date: 星期三, 06 四月 2022 10:32:05 +0800 Subject: [PATCH] 20220405DeployProduction --- force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js | 35 ++++------------------------------- 1 files changed, 4 insertions(+), 31 deletions(-) diff --git a/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js b/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js index e3d4714..9ca0c00 100644 --- a/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js +++ b/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js @@ -25,24 +25,10 @@ payloadForNewPI = JSON.stringify(data); } - fetch(postURL, { - method: 'POST', - body: payloadForNewPI, - headers: { - 'Content-Type': 'application/json', - 'pi-token': token - } - }).then((data) => { - console.log('data=' + JSON.stringify(data)); - return data.json(); - }).then((result) => { + AWSService.post(postURL,payloadForNewPI,function(result) { //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(result),this.successStatus); if(callback) callback(result); - }).catch(error => { - console.log('error'); - //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(error),this.failStatus); - console.log(error); - }); + },token); }, AwsGet : function(url, data ,callback,token){ @@ -56,22 +42,9 @@ } } - fetch(url, { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - 'pi-token': token - } - }).then((data) => { - console.log('data=' + JSON.stringify(data)); - return data.json(); - }).then((result) => { + AWSService.get(url,function(result){ //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(result),this.successStatus); if(callback) callback(result); - }).catch(error => { - console.log('error'); - //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(error),this.failStatus); - console.log(error); - }); + },token); } }) \ No newline at end of file -- Gitblit v1.9.1