本文整理匯總了TypeScript中app/shared/services/pg.service.PgService.put方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript service.PgService.put方法的具體用法?TypeScript service.PgService.put怎麽用?TypeScript service.PgService.put使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app/shared/services/pg.service.PgService
的用法示例。
在下文中一共展示了service.PgService.put方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: updateCase
updateCase(caseJson: Case): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
console.log(this.pg.getToken());
return this.pg.put('cases', caseJson, headers);
}
示例2: updateContact
async updateContact(contact: Contact): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
return await this.pg.put('contacts', contact, headers);
}
示例3: UpdateUser
UpdateUser(user: User): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
return this.pg.put('users', user, headers);
}
示例4: updateCall
async updateCall(call: Call): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
return await this.pg.put('calls', call, headers);
}
示例5: updateAccount
async updateAccount(account: AccountJSon): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
return await this.pg.put('accounts', account, headers);
}
示例6: updateTask
updateTask(task: TaskJson): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
return this.pg.put('tasks', task, headers);
}
示例7: updateDept
updateDept(dept: Department): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
return this.pg.put('department', dept, headers);
}
示例8: updateRole
updateRole(role: RoleJSon): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
return this.pg.put('aclRoles', role, headers);
}