リストビュー/作成ビューで、ユーザーが保存ボタンをクリックしたときに、デフォルトの通知 (スクリーンショットを参照してください) の代わりにカスタム通知メッセージを追加しようとしています。
カスタム通知メッセージを追加する方法があれば誰か教えてください。ここに画像の説明を入力
var app = nga.entity('アプリ').label('アプリ'); // ユーザーの 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>'])
;