Project: Mall App Client: Maiora
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

18 行
458 B

  1. import { Injectable } from '@angular/core';
  2. import { HttpClient, HttpHeaders } from '@angular/common/http';
  3. import { URL } from '../mocks/url';
  4. @Injectable({
  5. providedIn: 'root'
  6. })
  7. export class AuthService {
  8. constructor(
  9. private http: HttpClient
  10. ) { }
  11. authenticateUser(credentials: { username: string, password: string, login_type: string }) {
  12. return this.http.post(URL + '/api/auth/signin', credentials).toPromise();
  13. }
  14. }