Iは両成分の使用量は、現在のid
とtarget
をフィルタリングすることにより、特定のリソースへrequest
を作製するために使用ReferenceManyFields
明らかに異なっている知っています。 ReferenceArrayFields
は、ids
を含むsource
を使用して、参照されたid
をフィルタリングすることによって特定のリソースに対してrequest
を作るために使用されました。ReferenceManyFields/ReferenceArrayField組み合わせ
ReferenceManyFields
はtarget
小道具を有し、ReferenceArrayFields
はsource
小道具を有する。 target
とsource
に基づいてリクエストを送信する方法はありますか?ここで
が..私のコードです
export const ApplicationEdit = (props) => {
return (
<Edit {...props} >
<SimpleForm>
<ReferenceManyFields reference="applications" target="customer_id" source="costumer_id" addLabel={true} label="Application History">
<Datagrid>
<TextField source="id" />
<DateField source="date" />
<TextField source="amount" />
<TextField source="status" />
<TextField source="customer_id" />
</Datagrid>
</ReferenceManyFields>
</SimpleForm>
</Edit>
);
}
あなたのユースケースについて説明できますか? – Gildas
私は 'ApplicationShow'の中でユーザが作ったアプリケーションの詳細を表示する' ApplicationShow'を持っています。私は関連ユーザの過去のアプリケーション履歴をグリッドリストに示す必要があります。 – nesxie
@Gildasとにかくこの問題を解決するには? – nesxie