zoukankan      html  css  js  c++  java
  • angular2学习 -- 基本配置学习

      开始学习angular2了,内心还是有点小激动的,看到angular2的文档以及教程后,那份欣喜更重了。

      首先选择javascript模式而不是typescript模式(我不会)然后就按照教程上面的配置npm依赖包了,安装之后跳过typescript,复制粘贴app.component.js,boot.js,index.html文件.然后配置nginx静态文件,马上效果就出来了,论文档的重要性!

      好了到此开始了解app.core.Component是什么东东了,打开api review -》查找Component , 文档就出来了,在我看来它的文档比react好多了,起码react到死也不会给个例子出来,忘不了那段痛苦的学习经历,但是react学起来还是挺简单的。 下面开始复制粘贴:

      

    constructor({selector, inputs, outputs, properties, events, host, exportAs, moduleId, bindings,
                 providers, viewBindings, viewProviders,
                 changeDetection = ChangeDetectionStrategy.Default, queries, templateUrl, template,
                 styleUrls, styles, directives, pipes, encapsulation}?: {
      selector?: string,
      inputs?: string[],
      outputs?: string[],
      properties?: string[],
      events?: string[],
      host?: {[key: string]: string},
      /** @deprecated */ bindings?: any[],
      providers?: any[],
      exportAs?: string,
      moduleId?: string,
      /** @deprecated */ viewBindings?: any[],
      viewProviders?: any[],
      queries?: {[key: string]: any},
      changeDetection?: ChangeDetectionStrategy,
      templateUrl?: string,   //模板url
      template?: string,      //模板
      styleUrls?: string[],    //样式url
      styles?: string[],      //样式
      directives?: Array<Type | any[]>,
      pipes?: Array<Type | any[]>,
      encapsulation?: ViewEncapsulation
    })
  • 相关阅读:
    kubernetes容器编排系统介绍
    whistle--全新的跨平台web调试工具
    深刻理解 React (一) ——JSX和虚拟DOM
    理想的互联网服务后台框架的九个要点
    gerrit的使用笔记
    Ubuntu 使用unzip解压乱码的问题
    ibus-libpinyin 无法选择除第一个外的候选词
    vscode Git:failed to execute git
    C Primer Plus 创建友好的输入界面 笔记
    Git学习笔记---安装与初始化 连接远程版本库
  • 原文地址:https://www.cnblogs.com/lifeisshort/p/5126001.html
Copyright © 2011-2022 走看看