自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

转载 apereo cas 小记01--服务器搭建01

---恢复内容开始---github repository:apereo/cas一,获取项目链接:https://github.com/apereo/cas-overlay-templateclone该项目。切换到5.3分支。安装maven依赖二,overlay 配置文件build 项目包 (注意:windows ...

2019-09-05 13:58:00 184

转载 angular custom Element 自定义web component

angular自定义web组件:首先创建一个名为myCustom的组件。引入app.module:...import {customComponent} from ' ./myCustom.component';@NgModule({ declarations:[AppComponent,customComponent], entry...

2018-04-15 14:31:00 578

转载 angular components

最近写了一套angular 组件,希望大家支持:Github:https://github.com/zhantewei2/ng-ztwwebSite:http://39.108.193.57:3000完整的angular组件解决方案,以后自己也会使用,还会不断更新。欢迎pull request。转载于:https://www.cnblogs.com/ztwBlog/...

2017-09-19 13:18:00 167

转载 angular2-scroll-module

这篇介绍一下,写一个自己的angular2滚动监听插件目录结构:  /scrollModule:    ztw-scroll.module.ts;    scrollBind.directive.ts;    scroll.directive.ts;    scroll.service.ts;使用:({ template:` <...

2017-02-05 17:37:00 134

转载 koa2使用&&中间件&&angular2的koa托管

文章导航1,koa2使用;2,写中间件;3,koa2路由配置angular2;一。先上代码,一篇,看完koa2中大多基础方法:const Koa=require('koa');const app=new Koa(); //middleWare:const Router=require('koa-router');const mount=...

2017-01-18 14:05:00 236

转载 实现koa中的generator用法

尽管koa2中已经被async/await代替。但我还是想自个儿着写一个koa1中的generator。一,写这个之前,先写一个可以现实,express中next用法的函数:var event=require('events').EventEmitter;class App extends event{ constructor(){ ...

2017-01-14 22:03:00 217

转载 Mongodb笔记(三)user && aggregate && mapReduce

版本:mongodb3.4。User:   mongodb使用验证登录;默认不开启,mongod中使用--auth开启:  mongod -port=3000 --auth ;   基本方法:     db.createUser({ user:username, pwd:passwd, roles:[ {role: '...

2017-01-13 13:30:00 130

转载 Mongodb笔记(二) Index

版本:mongodb3.4;Index :  如果mongodb不能使用索引进行排序,就会将数据放入内存中进行排序,而当内存使用超过32MB时,就会报错。  在创建索引时,应确保索引的选择力,避免多余的查询。避免没有选择力的索引。  _id是默认的索引。  基本方法:      db.collection.createIndex({A:1});     ...

2017-01-13 12:52:00 144

转载 mongodb笔记(一) 分片 &&文档连接

版本:mongodb3.4 ;分片:  工作顺序:router=>config=>shards 一,配置config:   3.4中config必须为replSet。下面配置两个config。   mongod --configsvr -dbpath= .. -logpath=.. replSet=myConfig -port=3001 --f...

2017-01-12 01:51:00 140

转载 node.js Stream Buffer FsPromise

Stream:  类似这样:a.pipe(b).pipe(c); 我想写一个b。所以:var rs=new (require('stream').Readable)();var ws=new (require('stream').Writable)();rs._read=function(){ this.push('send a msn for the fi...

2017-01-06 19:49:00 186

转载 angular2 笔记

动态添加一个component:  import { ViewContainerRef, Component, ComponentFactoryResolver, ViewChild } from '@angular/core';import {InstanceComponent} from ' ./ instance.compo...

2017-01-02 05:47:00 126

转载 angular2 - content projection-

angular2中的内容映射:App.component:<my-day> <my-lucky> </my-lucky></my-day>MyDay.component:selector:'my-day'template`<h1>my day </h1> ...

2016-12-30 08:19:00 126

转载 Ionic2学习笔记

Componentnav:<ion-nav [root] = 'rootComponent'></ion-nav>....import {Nav} from 'ionic-angular';....export class AppComponent{  @ViewChild(Nav) private nav:Nav;  pu...

2016-12-30 00:40:00 195

转载 angular2-aot-webpack 生产环境下编译angular2

这里讲讲,angular2在生产模式下用webpack2进行打包的方法: //使用rollup打包还是比较坑的,功能及插件上都不如webpack, 关键不支持代码分离,导致angular里的lazy loader将无法使用。具体步骤: angular=>aot=>webpack(Tree shaking&& Ugli...

2016-12-22 06:49:00 295

转载 webpack使用tree shaking的问题。及关于UglifyJs不支持ES6的解决方案。

webpack:plugins:[ new webpack.optimize.UglifyJsPlugin({ compress:{warning:true} }) ]  是的,一些dead code 在打包后会被移除.比如没用的varible ,function。但是classes会被UglifyJs作为side effect,然...

2016-12-17 22:33:00 491

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除