4

我的 ng-admin 应用程序中有一个 referenced_list:

nga.field('profiles', 'referenced_list') // display list of related profiles
                .targetEntity(profiles) 
                .targetReferenceField('user_id')
                .targetFields([
                    nga.field('id').isDetailLink(true),
                    nga.field('username'),
                ]),
            nga.field('', 'template').label('')
                .template('<span class="pull-right"><ma-filtered-list-button entity-name="profiles" filter="{ user_id: entry.values.id }" size="sm"></ma-filtered-list-button></span>')

模板字段创建“查看所有相关配置文件”链接。

我想做的是创建一个链接到配置文件创建页面的“添加新配置文件”按钮,并预先选择当前的 user_id。

是否有这样做的技巧或可以做到这一点的自定义模板/指令?

4

1 回答 1

5

<ma-create-button>指令已在几天前添加(https://github.com/marmelab/ng-admin/pull/696)。它完全允许您想要的东西:

<ma-create-button entity-name="comments" default-values="{ post_id: entry.values.id }" size="xs"></ma-create-button>

它在 ng-admin 0.9-dev 及更高版本中可用。

于 2015-09-01T09:57:15.293 回答