0
私listview
URLは次のように表示されます:リストビューリンクは特殊記号が含まれてい
http://localhost/inventorymanagement/#/~2Finventory~2Frequest~2Fitem~2F/list
私はこのようなreadbaleフォームにそれを変更するにはどうすればよい?:
http://localhost/inventorymanagement/#/inventory/request/item/list
私のjsに見てください。ファイル。
// create an admin application
var admin = nga.application('admin')
.baseApiUrl(BASE_URL); // main API endpoint
// //create a user entity
// //the API endpoint for this entity will be 'http://jsonplaceholder.typicode.com/users/:id
var inventoryItem = nga.entity('/inventory/request/item/');
inventoryItem.listView().fields([
// use the name as the link to the detail view - the edition view
nga.field('user_details.email').label('email'),
nga.field('required_quantity'),
nga.field('demand_date'),
nga.field('inventor_item_details.item_title').label('Item Title'),
]).filters([
nga.field('user_details.email')
.label('User Filter')
.pinned(true)
]);
admin.addEntity(inventoryItem)
あなたのjsはどこですか? – DMCISSOKHO
質問を編集してください、見てください! –
あなたのルーティングのために? – DMCISSOKHO