一些实用的库

  • 前端本地下载功能:
https://github.com/sheetjs/js-xlsx
https://docs.sheetjs.com/#worksheet-object
  • iron-redux - 一个类型完美的 Redux 去形式化的库(适用react和angular(ng搭配ngrx)):
https://github.com/nefe/iron-redux
  • 移动端的屏幕适配方案:
https://github.com/amfe/lib-flexible
  • 移动端点击延迟解决方案:
    • 在angular中的使用
    import * as FastClick from 'fastclick';
    /** fastclick需要等待页面内容加载完成后再处理元素的响应事件。 */
    ngAfterViewInit(): void {
      FastClick['attach'](document.body);
    }
    
https://github.com/ftlabs/fastclick
  • ngrx
https://ngrx.io/

猜你喜欢

转载自blog.csdn.net/weixin_33890526/article/details/87605453
今日推荐