The nitty-gritty of compile and link functions inside AngularJS directives The nitty-gritty of compile and link functions inside AngularJS directives ...
分类:
其他好文 时间:
2016-11-15 23:27:53
阅读次数:
288
package.json:"devDependencies": { "babel-cli": "^6.18.0", "babel-core": "^6.18.2", "babel-plugin-transform-es2015-arrow-functions": "^6.8.0", "babel-p ...
分类:
其他好文 时间:
2016-11-14 15:17:24
阅读次数:
269
因为nginx启动不方便,所以我们需要自已手动来编译一个nginx的启动脚本[root@LNMP~]#vim/etc/init.d/nginx#加入以下内容#!/bin/bash#chkconfig:-3021#description:httpservice.#SourceFunctionLibrary./etc/init.d/functions#NginxSettingsNGINX_SBIN="/usr/local/nginx/sbin/n..
分类:
其他好文 时间:
2016-11-09 13:15:33
阅读次数:
156
摘自: http://www.cnblogs.com/starlion/p/3894578.html 一:匿名函数 (在php5.3.0 或以上才能使用) php中的匿名函数(Anonymous functions), 也叫闭包函数(closures), 允许指定一个没有名称的函数。最常用的就是回调 ...
分类:
Web程序 时间:
2016-11-08 23:21:05
阅读次数:
503
在C++14中允许使用type deduction用于函数参数和函数返回值 Return Type Deduction in C++11 Deducing return types for C++11 template functions In order to reduce the verbose ...
分类:
其他好文 时间:
2016-11-06 17:31:22
阅读次数:
128
参考了知乎的这篇文章:https://zhuanlan.zhihu.com/p/20475329 ...
分类:
其他好文 时间:
2016-11-02 20:38:41
阅读次数:
389
WordPress 标签默认并无 rel="nofollow" 属性。rel="nofollow" 属性的作用是:告诉搜索引擎,无需追踪目标页,禁止蜘蛛爬行和传递权重。如果你不准备让搜索收录标签,可以通过下面的代码为标签添加该属性。 将下面的代码添加到当前主题 functions.php 中: 然后 ...
分类:
其他好文 时间:
2016-11-02 14:22:19
阅读次数:
132
Arrow Functions是个简写形式的函数表达式,并且它拥有词法作用域的this值(即不会新产生自己作用域下的this, arguments, super 和 new.target 等对象)。此外,箭头函数总是匿名。 箭头函数表达式 (=>) Note: 箭头函数表达式是ECMAScript ...
分类:
其他好文 时间:
2016-11-02 00:28:45
阅读次数:
208
文档目录 本节内容: AJAX Notification Message UI Block & Busy Event Bus Logging Other Utility Functions ABP提供了一序列的对象和功能,使javascript开发容易且标准。 此处有一个ABP里api的列表,点击标 ...
分类:
编程语言 时间:
2016-11-01 14:31:12
阅读次数:
284
构造器函数(Constructor functions)的定义和任何其它函数一样,我们可以使用函数声明、函数表达式或者函数构造器(见以前的随笔)等方式来构造函数对象。函数构造器和其它函数的区别在与它们的调用方式不同。 要以构造函数的方式调用函数,只需要在调用时在函数名称前加new 关键字,比如:fu ...
分类:
编程语言 时间:
2016-11-01 01:17:10
阅读次数:
203