在列表视图/创建视图中,当用户单击保存按钮时,我试图添加自定义通知消息而不是默认通知(请参阅屏幕截图)。
如果有办法添加自定义通知消息,有人可以告诉我吗?在此处输入图像描述
var app = nga.entity('app').label('App'); // 用户的 API 端点将是 ' http://jsonplaceholder.typicode.com/users/:id
app.listView()
.title('App Lists')
.fields([
nga.field('id'),
nga.field('appName').label('App Name'),
nga.field('appId').label('App Id')
.validation({ required: true, pattern: '[A-Za-z0-9\.\-_]{1,50}' }),
nga.field('appSecret').label('App Secret'),
nga.field('userId').label('User Id'),
nga.field('description').label('App description'),
nga.field('published', 'choice').choices([
{ value: true, label: 'true' },
{ value: false, label: 'false' }
])
])
.exportFields([])
.listActions(['<app-property post="entry"></app-property>','edit', 'delete'])
.perPage(10) // limit the number of elements displayed per page. Default is 30.
.batchActions(['delete', '<my-custom-directive entries="selection"></my-custom-directive>'])
;