项目开发中经常会遇到需要显示和隐藏DOM元素。常用的两个是display,visibility属性,高级点的会用到angularJS的ng-show,ng-if指令。 W3标准对这个两个属性的解释如下: display 设置元素如何显示。 visibility 设置元素是否可见。 dispaly: ...
分类:
其他好文 时间:
2020-04-04 14:55:32
阅读次数:
73
准备代码,会在实例中用到 var app = angular.module('app', []); angular指令定义大致如下 app.directive('directiveName', function() { return { // config } }) 其中return返回的配置对象包 ...
分类:
其他好文 时间:
2020-04-04 09:24:26
阅读次数:
51
安装vmwareexsi系列时,通过网页访问时出现报错Error:[$rootScope:inprog]http://errors.angularjs.org/1.3.2/$rootScope/inprog?p0=%24digestathttps://10.1.1.10/ui/scripts/main.js:263:20611atl(https://10.1.1.10/ui/scripts/mai
分类:
其他好文 时间:
2020-03-30 21:45:33
阅读次数:
449
在了解过滤器之前,我们需要明确一个概念--过滤器,本质上都是函数。其作用在于用户输入数据后,它能够进行处理,并返回一个数据结果。Vue.js与AngularJS中的过滤器语法有些类似,使用管道符(|)进行连接。 一、内置过滤器 Vue.js内置了一系列常用的过滤器,可以直接进行调用。这些内置过滤器都 ...
分类:
其他好文 时间:
2020-03-27 10:50:24
阅读次数:
93
The using keywords has three major uses: The using statement defines a scope at the end of which an object will be disposed. The using directive creat ...
官网例子的延伸https://cn.vuejs.org/v2/guide/custom directive.html 1.先建立一个directive的文件,在地下建立子文件,例如focus.focus底下有index.js 2.在组件里面去引入和使用 ` ` ...
分类:
其他好文 时间:
2020-03-23 15:09:54
阅读次数:
175
自定义指令 https://cn.vuejs.org/v2/guide/custom-directive.html 简介 Watch a free video lesson on Vue School 除了核心功能默认内置的指令 (v-model 和 v-show),Vue 也允许注册自定义指令。注 ...
分类:
其他好文 时间:
2020-03-21 18:24:03
阅读次数:
82
Turn off IPv6 in Apache To turn off IPv6 in Apache, just change the Listen directive to: Listen 0.0.0.0:80 This will limit Apache to listening only to ...
分类:
其他好文 时间:
2020-03-18 17:11:53
阅读次数:
188
项目是ASP.NET MVC,在重构时页面时,几部页面相同的html代码,被抽至部分视图Partial View中去了。但是ASP.NET MVC中,又使用了angularjs。所以部分视图中的Controller相对于angularjs来说,就成了子控制器Controller。 现在的问题是,在视 ...
分类:
其他好文 时间:
2020-03-17 11:33:51
阅读次数:
79
npx ng g directive DebounceClickDirective --module=app 然后自动生成了2 个文件 CREATE src/app/debounce-click-directive.directive.spec.ts (290 bytes) CREATE src/a ...
分类:
其他好文 时间:
2020-03-14 01:08:15
阅读次数:
156