最近写http://www.itoolshub.com/的时候用到了日期时间选择器,Angular本身material2只有日期选择器,也不知道为什么官方不提供日期时间选择器,也可能是Angular2以及如今的.../node_modules/layui-laydate/dist/laydate.js"
],
Angular在编译的时候会把上述的js引用都打包到scripts.bundle.js文件中
ts编译识别...对视图渲染之后,也就是生命周期中的AfterViewInit函数中执行.另外该渲染会使得双向绑定失效,需要处理结果则可以在laydate的回调函数中处理....'#layerdate',
type: 'datetime',
change: done,
done: done
});
}
备注
很多库都是直接对DOM进行操作,这对于Angular...更多Angular实战代码可以参考我的开源项目:
github: https://github.com/nl101531/IToolsHub