In angular1, the corresponding controller and template can be loaded according to the routeparam. There is a loader method in the routeconfig of ng2. The document mentions promise. I don’t know how to get the routeparam to dynamically load the component?
滿天的星座2017-05-15 17:03:06
Modification:
http://stackoverflow.com/questions/34842536/implementing-dynamic-routing-in-angular2-typescript
The code below is asynchronous loading, not dynamic loading.
{ path: '/reviewTask', loader: () => require('./review/review')('ReviewTask'), name: 'ReviewTask'},