特定の 1 つのフィールドを除いて、ng-admin で作成したいくつかのフィールドを再利用したいと思います。
どうすればそれを行うことができますか?
これは私が使用しているコードです:
post.editionView()
.title('Edit post "{{ entry.values.title }}"') // title() accepts a template string, which has access to the entry
.actions(['list', 'show', 'delete']) // choose which buttons appear in the top action bar. Show is disabled by default
.fields([
post.creationView().fields(), //<--- I'd like to remove one field from here
ありがとうございました、