会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
01234
博客园
首页
新随笔
联系
订阅
管理
2017年8月31日
用Castle.Core实现方法拦截器
摘要: 1.去NuGet下载 Castle.Core.dll 2.建一个普通的类。注意:本类2个方法,测试是否走拦截器。这里只有标记Virtual才能实现方法拦截。代码如下: using System; using System.Collections.Generic; using System.Linq;
阅读全文
posted @ 2017-08-31 19:10 01234
阅读(4558)
评论(0)
推荐(0)
2017年6月29日
Azure 文件存储服务
摘要: 1.首先 : NuGet 获取这两个包。 执行以下步骤: 在“解决方案资源管理器”中,右键单击你的项目并选择“管理 NuGet 包”。 在线搜索“WindowsAzure.Storage”,然后单击“安装” 以安装存储客户端库和依赖项。 在线搜索“WindowsAzure.Configuration
阅读全文
posted @ 2017-06-29 09:47 01234
阅读(477)
评论(0)
推荐(0)
2016年11月21日
npm 安装
摘要: 1.https://nodejs.org/en/ 下载node.js 控制台,查看node版本 C:\WINDOWS\system32>node --version 出现版本表示安装成功 2.cmd 输入 npm install anywhere -g 安装anywhere 3.在cmd页面 找到你
阅读全文
posted @ 2016-11-21 16:56 01234
阅读(167)
评论(0)
推荐(0)
2016年10月25日
ExtJs007最常用的查询方法
摘要: 1 Ext.onReady(function () { 2 3 Ext.create('Ext.panel.Panel', { 4 title: '我的面板', 5 width: '100%', 6 height: 400, 7 renderTo: Ext.getBody(), 8 ...
阅读全文
posted @ 2016-10-25 18:19 01234
阅读(241)
评论(0)
推荐(0)
ExtJs006类别名、备用名
摘要: Ext.onReady(function () { //Ext.define 其他配置项 //别名、备用名 Ext.define("User", { config: { name: 'hhh', age:10 }, alias: 'uu',//起别名 底层代码在...
阅读全文
posted @ 2016-10-25 18:14 01234
阅读(198)
评论(0)
推荐(0)
2016年9月28日
ExtJS003单击按钮弹出window
摘要: html部分 js部分
阅读全文
posted @ 2016-09-28 09:41 01234
阅读(1121)
评论(0)
推荐(0)
ExtJS002Window创建
摘要: Ext.onReady(function () { Ext.create('Ext.window.Window', { title: 'window', width: 400, height: 300, layout: 'fit', //布局 constrain: true,//限制窗口不超出浏览器边界 c...
阅读全文
posted @ 2016-09-28 09:34 01234
阅读(177)
评论(0)
推荐(0)
2016年9月27日
ExtJs005继承
摘要: 1 Ext.onReady(function () { 2 //extend 继承 3 Ext.define('Person', { 4 config: { 5 name: 'aaa' 6 }, 7 //给当前定义的类加一个构造器 ,目的就是为了初始化信息 8 constru...
阅读全文
posted @ 2016-09-27 09:39 01234
阅读(145)
评论(0)
推荐(0)
ExtJs004define定义类
摘要: Ext.onReady(function () { //在Ext中如何去定义一个类: Ext.define(className , properties , callback) Ext.define('Person', { //这里是对于这个类的一些配置信息 //config属性 就是配置当前类的属性内容,并且会加上get和set方法 ...
阅读全文
posted @ 2016-09-27 09:37 01234
阅读(152)
评论(0)
推荐(0)
2016年9月26日
ExtJS笔记
摘要: ExtJS目录说明 ExtJS001HelloWorld弹窗 ExtJS002Window创建 ExtJS003单击按钮弹出window ExtJs004define定义类 ExtJs005继承 ExtJs006类别名、备用名 ExtJs007最常用的查询方法 未完待续。。。
阅读全文
posted @ 2016-09-26 16:50 01234
阅读(115)
评论(0)
推荐(0)
下一页
公告