ここに参考文献があります: Admin-on-Rest
app.js で:
<Resource name="customers" list={CustomerList} icon={UserIcon} edit={CustomerEdit} create={CustomerCreate}/>
customer.js で:
<TextInput source="firstname" />
<ReferenceInput label="Partner" source="id" reference="partners" >
<AutocompleteInput optionText="name" />
</ReferenceInput>
<TextInput source="email" />
問題はオートコンプリートが表示されないことですが、API エンドポイント /partners から取得したログ データをチェックインします
また、参照を reference="customers" に変更すると、データとオートコンプリートが表示されます。
助けてください ??