0

我想重用我在 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 回答