標籤:依賴 angular2 下載 orm hicon date package str 使用
解決流程1:配置package.json添加新的依賴,然後進行update,下載新的庫 "jquery":"*", "tether":"*", "bootstrap":"*", "moment":"*", "eonasdan-bootstrap-datetimepicker":"*"2: 配置angular-cli.json "styles": [ "../node_modules/bootstrap/dist/css/bootstrap.min.css", "../node_modules/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css", "styles.css" ], "scripts": [ "../node_modules/jquery/dist/jquery.min.js", "../node_modules/tether/dist/js/tether.min.js", "../node_modules/bootstrap/dist/js/bootstrap.min.js", "../node_modules/moment/min/moment.min.js", "../node_modules/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js" ],3: 在模版中使用datatimepicker外掛程式 4:在組件中對該組件進行執行個體化declare var $:any;@Component({ selector:"app-root", templateUrl:"bootstrap.template.html"})export class BootstrapComponent extends OnInit{ ngOnInit(): void { $(function () { $(‘#datetimepicker1‘).datetimepicker(); }); }}
angular2怎麼使用第三方的庫(jquery等)