是否可以根据路线名称渲染部分内容?
例如,而不是这样做:
.when('/term/foo', {templateUrl: 'partials/term/foo.html'},
.when('/term/bar', {templateUrl: 'partials/term/bar.html}
做这样的事情:
.when('/term/{{term}}', {templateUrl': 'partials/term/{{term}}.html'}
我在哪里使用{{}}
来显示我想要发生的事情。
如果不清楚,请告诉我,我会尽力澄清。