本文整理匯總了TypeScript中app/shared/services/pg.service.PgService類的典型用法代碼示例。如果您正苦於以下問題:TypeScript service.PgService類的具體用法?TypeScript service.PgService怎麽用?TypeScript service.PgService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了service.PgService類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: addContact
async addContact(contact: Contact): Promise<any>{
const headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('token', this.pg.getToken());
console.log("Token: " + this.pg.getToken());
return await this.pg.post('contacts', contact, headers);
}
示例2: 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);
}
示例3: 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);
}
示例4: 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);
}
示例5: 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);
}
示例6: 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);
}
示例7: 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);
}
示例8: deleteUserOfDept
deleteUserOfDept(deptId: string, userId: string): 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.post('department/removeUser/' + deptId + "/" + userId, {}, headers);
}
示例9: 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);
}
示例10: 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);
}