如何从 React 访问 API 平台属性

How to access API plateform properties from react

在向 symfony API 平台发出请求后,他们 return 我的属性如下:

@context: "/api/contexts/User"
@id: "/api/users"
@type: "hydra:Collection"
hydra:member: Array(2)
0: "Création de compte enregistrée."
1: {@id: "/api/users/3", @type: "User", id: 3, email: "*******@outlook.com", firstname: "******", …}
length: 2
__proto__: Array(0)
hydra:totalItems: 2
__proto__: Object

但是我无法从 React JavaScript 访问 hydra: member 属性。

您可以使用如下符号访问对象属性:object['hydra:member']。与 @id@type.

相同