试图从这里修改灵魂。它工作正常,但是如果你在组件中将模板更改为 templateUrl,它应该动态加载,你会得到一个错误:“没有提供 ResourceLoader 实现。无法读取 url ...”。
@Component({
selector: 'string-editor',
templateUrl: 'app/parts/string.html', //using template URL instead of inline template here
})
export class StringEditor { ... }
plunker上的实时示例。任何想法如何解决这一问题?