就定义了一个空方法export class XHR {
get(url: string): Promise<string> { return null; }
}
要改名字
rename it into TemplateLoader
后来搜到这个东西在用
|
其实就是实现了下get方法,返回的是promise所以可以then下去
注: An interface for retrieving documents by URL that
the compiler uses to load templates
.
看样子可能不是用作普通的API请求用