本文整理汇总了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);
}