にそれを返すことができusers
た場合のおかげで多くのことを@pelak。 私はあなたの答えにコードベースを書いています。
カスタムでrestClient応答データへのパスを指定します。
const convertHTTPResponseToREST = (response, type, resource, params) => {
const { headers, json } = response;
switch (type) {
case GET_LIST:
case GET_MANY_REFERENCE:
if (!headers.has('content-range')) {
throw new Error(
'The Content-Range header is missing in the HTTP Response. The simple REST client expects responses for lists of resources to contain this header with the total number of results to build the pagination. If you are using CORS, did you declare Content-Range in the Access-Control-Expose-Headers header?'
);
}
// IF you just want use with **users** resource.
if(resource === 'users') {
return {
data: json.result,
total: parseInt(
headers
.get('content-range')
.split('/')
.pop(),
10
),
};
}
return {
data: json.result,
total: parseInt(
headers
.get('content-range')
.split('/')
.pop(),
10
),
};
case CREATE:
return { data: { ...params.data, id: json.id } };
default:
return { data: json };
}
};
キーワード:子要素内のリストは、リストの巣
おかげで、私はそれが動作 – Alexey
はいを、しようとします。私はあなたに@ペラックありがとうございます。あなたは私の日を救う。あなたはこの機能のための管理者の休憩改善の提案についてどう思いますか、それはとても簡単で、価値がありません。 – Alexey
あなたは私の日を保存する –