ng-admin 編集ビューでは、次のように id を使用してファイル アップロード URL を変更する必要がありますが、{{entry.values.id}} のような uploadInformation ベース URL で選択したエンティティの id を取得する方法がわかりません。以下は私のコードです。 :
files.editionView()
.title('Edit File {{ entry.values.id }}({{ entry.values.filePath}})') // 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([
nga.field('id').label('id').editable(false),
nga.field('file', 'file').uploadInformation({ 'url': baseurl +"files/upload/{{entry.values.id}}"}),// fields() without arguments returns the list of fields. That way you can reuse fields from another view to avoid repetition
])