如何將html模板添加到指令中?下面是一個不起作用的示例代碼:如何在Angular 2中使用templateUrl指令
import @ Directive} from'@ angular/core';
@Directive({
選擇: '[主面的巴]',
templateUrl: '主面的一個bar.html'})出口類MasterSideBar {
構造(){
console.log('Hello MasterSideBar Directive');
}
}
我得到以下錯誤:
類型{選擇的」參數:字符串; templateUrl:string; }'不是 可分配給'Directive'類型的參數。對象字面量可能只有 指定已知屬性,並且'指令'中不存在'templateUrl'。
感謝您指出組件。我改變了使用組件,它的工作。 – max