如何从HAL响应中获取我的资源数据?

时间:2018-08-29 10:04:36

标签: angular spring-boot spring-hateoas

我正在使用Spring Boot 2构建API,并且Angular 6客户端必须处理诸如此类的响应:

{
  "_embedded" : {
    "userResourceList" : [ {
      "firstname" : "Stephane",
      "lastname" : "Toto",
      "email" : "toto@yahoo.se",
      "confirmedEmail" : false,
      "password" : "bWl0dGlwcm92ZW5jZUB5YWhvby5zZTptaWduZXRjNWRlMDJkZS1iMzIwLTQ4Y2YtOGYyMS0wMmFkZTQ=",
      "userRoles" : [ {
        "role" : "ROLE_ADMIN",
        "id" : 1
      } ],
      "_links" : {
        "self" : {
          "href" : "http://localhost:8080/api/users/1"
        },
        "roles" : {
          "href" : "http://localhost:8080/api/users/1/roles"
        }
      },
      "id" : 1
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "http://localhost:8080/api/users"
    }
  },
  "page" : {
    "size" : 20,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}

所有REST资源端点将重新运行此类HAL化响应。

我想知道如何处理这些。如果有这样的库可以简化对实际有效载荷的解析和提取。

我听说过RestAngular库,但不确定是否是我想要的。

也许侵入性较小的东西只能帮助解析,例如:

const user: User = hal2Json.parse<User>(response);

更新:我没有找到任何这样的库,所以我求助于此实现:

public getSome(searchTerm: string, sortFieldName: string, sortDirection: string, currentPage: number, limit: number): Observable<any> {
  let httpParams = new HttpParams()
  .set('page', currentPage.toString())
  .set('size', limit.toString());
  if (searchTerm) {
    httpParams = httpParams.append('searchTerm', searchTerm);
  }
  if (sortFieldName && sortDirection) {
    httpParams = httpParams.append('sort', sortFieldName + ',' + sortDirection);
  }
  return this.httpService.get(this.usersUrl, httpParams);
}

export class UsersApi extends PaginationApi {

  constructor(users: User[], currentPageNumber: number, elementsPerPage: number, totalElements: number, totalPages: number) {
      super(currentPageNumber, elementsPerPage, totalElements, totalPages);
      this.users = users;
  }

  users: User[];

}

getUsers(searchTerm: string, sortFieldName: string, sortDirection: string, currentPageNumber: number): Observable<UsersApi> {
  return this.userService.getSome(searchTerm, sortFieldName, sortDirection, currentPageNumber, this.elementsPerPage)
    .pipe(
      map(response => {
        return new UsersApi(
          response._embedded.userResourceList as User[],
          this.paginationService.correctPageNumberMispatch(response.page.number),
          response.page.size,
          response.page.totalElements,
          response.page.totalPages
        );
      })
    );
}

3 个答案:

答案 0 :(得分:2)

定义一个接口以包装HAL响应。这是我为图书服务所做的工作:

// book.service.ts
import { Injectable } from '@angular/core';
import { Book } from '../book';
import { Observable, map } from 'rxjs';
import { HttpClient } from '@angular/common/http';

@Injectable({
    providedIn: 'root'
})
export class BookService {

    private booksUrl = 'http://localhost:8080/books';

    constructor(private http: HttpClient) { }

    getBooks(): Observable<Book[]> {
        return this.http.get<GetBooksResponse>(this.booksUrl).pipe(
            map(response => response._embedded.bookList)
        );
    }
}

interface GetBooksResponse {
    _embedded: {
        bookList: Book[];
        _links: {self: {href: string}};
    };
}

HAL响应:
enter image description here

信用转到这篇文章:https://medium.com/@tbrouwer/spring-boot-backend-for-angular-tour-of-heroes-106dc33a739b

答案 1 :(得分:0)

您可以尝试使用halfred npm模块。似乎可以做您想要的:

https://www.npmjs.com/package/halfred

npm install halfred --save

然后将其导入:

import * as 'halfred' from 'halfred' // something like this should work

然后使用它:

const resource = halfred.parse(object)

答案 2 :(得分:-1)

  getUserResourceLists(): Observable<userResource[]> {
    return this.http.get<userResource[]>(this.Url)
      .pipe(
        map(data => data['_embedded']['userResourceList'])   
      );
  }

数据是一个对象= {"_embedded": {"userResource": [{ }, { }]...},因此data['_embedded']['userResourceList']将返回一个Observable userResource[]

您也可以像这样创建类

export class UserResource {
  firstname: string;
  lastname: string;
......
}
相关问题