自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(25)
  • 资源 (12)
  • 收藏
  • 关注

原创 Vue 中后台管理系统模板搭建

基于ant design vue搭建的中后台管理系统功能使用 keep-alive 缓存路由,动态 tab 切换,右键刷新,关闭Vue Router 配置高扩展性路由ant design vue 组件按需加载axios 基本使用,拦截配置使用 less效果图github功能使用 keep-alive 缓存路由,动态 tab 切换,右键刷新,关闭Vue Router 配置高扩展性路由ant design vue 组件按需加载axios 基本使用,拦截配置使用 less效果图githubht

2020-08-21 08:49:27 1140 1

原创 Nginx 从安装到配置--自启动、https

基本安装版本:Centos8 安装 1.18.0 的版本Centos7 安装1.8.0 版本解压tar -zxvf nginx-*.tar.gz编译进入到解压后的nginx 目录./configure --prefix=/usr/local/nginxprefix 后面对应的是安装的路径如果需要配置https,编译时需要加上https 模块,编译命令如下:./configure --prefix=/usr/local/nginx --with-http_ssl_mo

2020-06-05 15:00:40 200

原创 angular8 实现table表格表头固定

最近项目中有个需求,表头固定,内部实现滚动条。除了单个表头,还有多个表头的情况。效果图:直接贴出github项目地址,需要的可以点击访问

2020-01-02 17:30:30 1879 2

原创 Angular 仿网易云音乐(MicrosoftStore 版)

本款网页版播放器样式 仿照 window10 版的网易云音乐(Microsoft store 版)大致实现了与win10 版网易云的相同视觉效果与布局,以及仿照了相同的切歌逻辑,音量大小调节,进度条等功能。仅供业余时间自娱自乐,时间仓促,测试使用的是Chrome浏览器,如有BUG,欢迎指正。已部署到个人博客系统上,文末有体验地址。整体效果pc端手机端效果功能特点1.歌曲播放,...

2019-10-17 17:05:01 754 2

原创 leaflet常用插件(持续更新)

1. 测量测量距离(效果一) https://gokertanrisever.github.io/leaflet-ruler/测量距离(效果二) https://nltgit.github.io/Leaflet.LinearMeasurement/2. 动态轨迹动态的船舶轨迹 https://github.com/linghuam/Leaflet.TrackPlayBack3. canvas 图标绘制https://github.com/eJuke/Leaflet.Canvas-Marke

2021-12-15 11:28:46 1646

原创 Angular 配置多个 environment 环境

angular项目的环境变量文件默认是2个, environment.prod.ts 生产模式,environment.ts 开发模式,如何添加其他的环境呢,如 测试环境

2021-09-18 09:33:00 861

原创 Angular2 基本的模板语法

Angular2 模板语法(一)## 插值表达式{{...}}<p>My name is {{user.name}}</p> <h3> {{title}} <img src="{{heroImageUrl}}" style="height:30px"></h3><!-- "The sum of 1 + 1 is 2" --><p>The sum of 1 + 1 is {{1 +

2020-06-05 15:08:50 1389 1

原创 Angular路由复用实例(二)

主要使用了angular 路由复用策略angular version 7.2RouteReuseStrategy 官网API 地址https://angular.cn/api/router/RouteReuseStrategy效果图githu 地址 https://github.com/zjinger/harbor-web...

2019-03-28 09:56:17 639

原创 使用原生js 实现loading 插件

使用原生js 实现loading 插件表格加载数据时,可以放一个loading 的状态,避免页面出现假死的状态。基于原生的JavaScript ,无需依赖其他库样式参考了 ant-design最终效果图github 地址...

2019-01-16 14:51:30 4186

原创 Angular路由复用实例

这篇文章介绍了如何使用动态加载Component 的方式实现tabset 标签页,从而达到页面切换https://blog.csdn.net/qq_16566415/article/details/78709580#commentsedit这种方式缺点就是无法使用Angular 的路由来跳转,多个页面如果如果某个元素的id 值相同会有影响。以下的方式主要使用了Angular 的路由复用功能—...

2018-09-21 18:19:30 3876 4

原创 input 使用outline属性去掉淡蓝色边框不生效

1.常用的做法是使用outline:none 这个样式就可以了&lt;html&gt; &lt;head&gt; &lt;title&gt; 测试 &lt;/title&gt; &lt;style type="text/css"&gt; input{ outl...

2018-02-26 11:31:07 17016 1

原创 Angular 使用tabset 动态加载组件参数注入

在这篇文章中 介绍了使用tabset 动态加载组件的原理 ,http://blog.csdn.net/qq_16566415/article/details/78709580 后面发现需要在打开Components 的时候需要传递参数过去,这里找到了一个demo http://plnkr.co/edit/ZXsIWykqKZi5r75VMtw2?p=preview 具体可以参考。

2018-01-30 16:26:41 3360

原创 Angular tab标签页动态加载Components具体实现

效果图,左侧导航栏点击连接,右侧出现tab 标签页并动态显示不同的组件内容。为了演示效果更,后面的statistic.data1-5的内容是相同的,因为使用了相同的Component。 按钮操作 应业务需要,所以需要用到这种动态加载组件的tab,这种方式其实完全没有用到angular 的路由,只是在一个宿主页面上加载了很多的Component。 F12 看到这些tab的具体内容,通过

2017-12-04 16:57:38 10549 3

原创 Linux 安装 Oracle11g R2 详细教程

Linux 中安装Oracle 的步骤也是比较简单的,其中也有一些细节的东西,比如安装时Oracle需要的依赖包,Oracle 对系统的求,下面是详细的安装步骤准备的工具一台安装好linux 系统的虚拟机 使用VMware 安装linux 可以参考另一篇 http://blog.csdn.net/qq_16566415/article/details/78293945oracle 11g 的安

2017-10-23 08:49:02 1340 1

原创 Linux 中安装Oracle GlodenGate详细教程

环境VMware Oracle Linux6.3GlodenGate 12 对于如何使用 VMware 安装linux 可以参考我的这篇文章: http://blog.csdn.net/qq_16566415/article/details/78293945GlodenGate12 的下载地址为 http://www.oracle.com/technetwork/middleware/

2017-10-20 15:22:08 701

原创 VMware 安装Linux与VMTools小白教程

软件准备VMware version 12.5.7 提前度娘安装好VMware,想要去掉试用期提示,度娘上面有系列号供你使用Linux version:Oracle Linux 6.3 Oracle 获取渠道1:官网download 地址:https://edelivery.oracle.com/osdc/faces/Home.jspx Oracle 账号登录 进去后直接搜索 Orac

2017-10-20 11:58:22 1493

原创 Oracle GlodenGate initial load 初始化传输配置

Initial load:This specifies the Direct Load data synchronization initial load 初始加载数据同步,直接从源端数据同步数据到目标端数据库 大体分为三步:准备环境这里使用VMware 虚拟机安装了两个Oracle Linux 6.3 操作系统,使用centos 也没有关系,Linux内核都一样,具体怎么使用VM安装Lin

2017-10-19 09:59:12 1597

原创 OracleGlodenGate Parameters

附带章节中开头的一句话 Parameters play a very important role in the configuration of GoldenGate参数一般都是在各个进程中使用的,Mgr,Extract,Replicat…… 这些进程文件都储存在ogg_home目录下的 dirprm 文件夹中,ogg安装完成后默认有个mgr.prm 文件,这就是管理进程Mgr的配置文件

2017-10-18 16:11:12 366

原创 Linux 中配置oracle 自启动

准备工作版本Linux版本:Oracle Linux 6.3 Oracle版本:Oracle11.2.0.4 也适用于centos,Oracle 11 R2其他版本安装,配置环境变量 .bash_profile关于安装的教程很多,不赘述 这里贴出我自己的 .bash_profile JAVA_HOME=/usr/java/jdk1.8.0_144ORACLE_SID=orclORACLE_

2017-10-17 10:13:15 233

原创 Angular 项目端口和host修改以及跨域访问代理配置

在项目根目录新建proxy.config.json 文件 proxy.config.json{ "/api": { "target": "http://127.0.0.1:8081" }}在package.json 中更改scripts 下面的start 命令默认ng server改为ng serve --port 4201 --proxy-config proxy.co

2017-08-01 17:29:42 14501

原创 angular2 集成 Editor.md

Editor.md 官网链接下载安装github 下载地址使用bower安装bower install editor.md引入将解压后的editor 包放入assets 文件夹中从官网上可以看到editor.md 的依赖 所以需要在.angular.json 的scripts 配置中引入以下js 文件,还需要jQuery "../node_modules/jquery/dist

2017-06-26 16:24:51 2048 3

原创 阿里云服务器上搭建JavaWeb环境(jdk8-tomcat8-mysql5.7-nginx1.3)

1.准备工作阿里云服务器 系统:Centos 7.3 64 位 下面是链接地址,如果失效百度就可以了 1. apache-tomcat-8.5.14.zip 2. java 3. nginx 4. mysql 使用在线安装的方式2.工具服务器默认是没有图形化界面的,所以要借助shell连接工具远程连接 这里推荐使用xshell 和 xftp 连接阿里云,使用起来非常方便,可

2017-05-16 16:35:58 1877

转载 CentOS7使用firewall

CentOS7使用firewalld打开关闭防火墙与端口1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop firewalld2.systemctl是CentOS7的服务管理工具中主

2017-05-05 15:53:39 376

原创 angular2 集成ckeditor 提示 ”Unexpected token <“

代码片段: package.json..."dependencies": { ... "ckeditor": "^4.6.2", "ng2-ckeditor": "^1.1.6", ...}在module模块中引入 中引入 CKEditorModuleimport { CKEditorModule } from 'ng2-cked

2017-04-27 14:14:21 1218

转载 理解javascript 闭包

http://www.cnblogs.com/wangfupeng1988/p/3978035.html

2017-03-30 15:52:30 187

H+ 后台主题UI框架

H+ 后台主题UI框架 H+是一个完全响应式,基于Bootstrap3.3.6最新版本开发的扁平化主题,她采用了主流的左右两栏式布局,使用了Html5+CSS3等现代技术,她提供了诸多的强大的可以重新组合的UI组件,并集成了最新的jQuery版本(v2.1.4),当然,也集成了很多功能强大,用途广泛的jQuery插件,她可以用于所有的Web应用程序,如网站管理后台,网站会员中心,CMS,CRM,OA等等,当然,您也可以对她进行深度定制,以做出更强系统。

2018-06-01

ng-book_ The Complete Guide to Angular 4-Fullstack.io (2017)高清完整版PDF

Book Revision Revision 62 - Covers up to Angular 4 (4.2.0, 2017-06-23) Chapter Overview Before we dive in, I want to give you a feel for the rest of the book and what you can expect inside. The first few chapters provide the foundation you need to get up and running with Angular. You’ll create your first apps, use the built-in components, and start creating your components. Next we’ll move into intermediate concepts such as using forms, using APIs, routing to different pages, and using Dependency Injection to organize our code. After that, we’ll move into more advanced concepts. We spend a good part of the book talking about data architectures. Managing state in client/server applications is hard and we dive deep into two popular approaches: using RxJS Observables and using Redux. In these chapters, we’ll show how to build the same app, two different ways, so you can compare and contrast and evaluate what’s best for you and your team. After that, we’ll discuss how to write complex, advanced components using Angular’s most powerful features. Then we talk about how to write tests for our app and how we can upgrade our Angular 1 apps to Angular 4+. Finally, we close with a chapter on writing native mobile apps with Angular using NativeScript. By using this book, you’re going to learn how to build real Angular apps faster than spending hours parsing out-dated blog posts.

2018-05-30

ng-book_ The Complete Book on Angular 5-Fullstack.io (2018)高清完整版PDF

Book Revision Revision 67 - Covers up to Angular 5 (5.2.0, 2018-01-17) Chapter Overview Before we dive in, I want to give you a feel for the rest of the book and what you can expect inside. The first few chapters provide the foundation you need to get up and running with Angular. You’ll create your first apps, use the built-in components, and start creating your components. Next we’ll move into intermediate concepts such as using forms, using APIs, routing to different pages, and using Dependency Injection to organize our code. After that, we’ll move into more advanced concepts. We spend a good part of the book talking about data architectures. Managing state in client/server applications is hard and we dive deep into two popular approaches: using RxJS Observables and using Redux. In these chapters, we’ll show how to build the same app, two different ways, so you can compare and contrast and evaluate what’s best for you and your team. After that, we’ll discuss how to write complex, advanced components using Angular’s most powerful features. Then we talk about how to write tests for our app and how we can upgrade our Angular 1 apps to Angular. Finally, we close with a chapter on writing native mobile apps with Angular using NativeScript. By using this book, you’re going to learn how to build real Angular apps faster than spending hours parsing out-dated blog posts.

2018-05-30

angular-2-cookbook-2017(Matt Frisbie)高清PDF完整书签

author:Matt Frisbie What this book covers This book is up to date for the 2.4 release and is compatible through the 4.0 release as well, and it does not have any code based on the beta or release candidates. Chapter 1, Strategies for Upgrading to Angular 2, is an overview of a number of ways to migrate an Angular 1 application to Angular 2. Although there is no one-size-fits-all upgrade strategy, you will find that these recipes demonstrate some ways that will allow you to preserve a large amount of your existing Angular 1 code base. Chapter 2, Conquering Components and Directives, gives a broad and deep set of examples involving what Angular 2 components are and how to use them. Angular 2 applications are built entirely of components, and this chapter offers you a total rundown of their role. Chapter 3, Building Template-Driven and Reactive Forms, covers the reworked Angular 2 form modules. Angular 2 offers you two primary styles of erecting form features, and this chapter covers both of them in depth. Chapter 4, Mastering Promises, shows how the Promise object has a role in Angular 2. Although RxJS has subsumed some of the usefulness of Promises, they are still first-class citizens in ES6 and still play a crucial role. Chapter 5, ReactiveX Observables, gives you a crash course in how Angular 2 has embraced reactive programming. It includes recipes that demonstrate the basics of Observables and Subjects, as well as advanced implementations that take RxJS to its limits. Chapter 6, The Component Router, takes you through the totally reworked routing module in Angular 2. It covers both routing basics as well as an array of advanced routing concepts unique to Angular 2. Chapter 7, Services, Dependency Injection, and NgModule, describes the new and improved dependency injection and module strategies of Angular 2. It gives you all the pieces you need to break your application into independent services and modules, as well as ideal strategies for connecting those pieces together. Chapter 8, Application Organization and Management, is a broad overview of how you can manage your Angular 2 application inside and outside the client. Angular 2 introduces a number of layers of complexity that require advanced tooling, and this chapter will guide you through how to approach them. Chapter 9, Angular 2 Testing, will guide you through both how to set up test suites for Angular 2 as well as how to write various types of tests for these suites. Many developers avoid testing when learning a framework anew, and this chapter gently guides you through Angular 2's excellent test infrastructure. Chapter 10, Performance and Advanced Concepts, is a crash course on the dizzying array of complex concepts that Angular 2 comes with out of the box. This chapter covers program organization and architecture, framework features and tooling, as well as compile-time optimizations.

2018-05-30

angular ng-book2英文原版(完整高清彩版)

Written by Nate Murray, Felipe Coury, Ari Lerner, and Carlos Taborda,全书600多页,25M左右,书签完整,推荐使用Adobe Reader,适合深入学习angular

2018-05-30

getcolor屏幕取色器

使用鼠标拾取屏幕上的颜色并显示颜色的具体数值和RGB值

2017-10-12

github desktop 软件

github 桌面版软件,方便管理自己github上的项目,clone,添加local repository。。。,版本1.0.3,大小80M,直接安装即可

2017-10-12

pdksh-5.2.14-37.el5_8.1.x86_64.rpm

在linux上安装Oracle 数据库时会提示有依赖包需要安装,大部分都可以使用yum 来进行安装。但是yum却没有 pdksh这个依赖,这里需要手动使用rpm -ivh 命令安装pdksh。'rpm -ivh pdksh......'

2017-09-20

Javascript 高级程序设计(第三版)源码

Javascript 高级程序设计(第三版)源码,包含本书中所有章节的示例源码,方便读者进行对照练习。第一章和第二章没有code。

2017-09-04

postgis-bundle-pg96x64-setup-2.3.2-1.exe

PostgreSQL的扩展postgis ,64位

2017-06-22

openlayer v4.2.0

包括库的完整构建,调试版本和库CSS。

2017-06-22

空空如也

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

TA关注的人

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