0

特定の 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

ありがとうございました、

4

1 に答える 1

0

フィールドをeditionViewにも渡すことでそれを行うことができます

currentInventoryItem.editionView()
            .title('Update Inventory Items')
            .fields(                
                nga.field('consume'),
                nga.field('add'),
                nga.field('price')
            )
于 2016-09-23T09:18:26.360 に答える