主要工作: 服务器启动的时候做的事: 1、把包含了各种配置信息的 application 对象封装到了 HttpServer 对象的 request_callback 字段中,等待被调用 2、TCPServer 通过 listen 方法启动端口监听, 封装_handle_connection回调函数 ...
分类:
Web程序 时间:
2017-04-01 15:30:48
阅读次数:
353
1.stack overflow 上大神的描述(浏览的网页没记住): A "callback" is any function that is called by another function which takes the first function as a parameter. 2.看了 ...
分类:
其他好文 时间:
2017-03-31 19:08:49
阅读次数:
462
一:如果你需要在你的本地项目中配置redis。那么你首先得需要在你的本地安装redis 参考链接【http://www.runoob.com/redis/redis-install.html】 下载redis在网上有很多 我这里就不多做解释了 下载以后 找到这样的三个文件 这是我们需要操作的 每个版 ...
分类:
编程语言 时间:
2017-03-31 19:02:19
阅读次数:
312
1. ["1","2","3"].map(parseInt) 为多少?答:[1,NaN,NaN]array.map(function(currentValue,index,arr), thisValue)原数组中的元素经过该方法后返回一个新的元素。currentValue callback的第一个参 ...
分类:
编程语言 时间:
2017-03-31 15:03:02
阅读次数:
146
ng允许我们自定义指令 下面来我们自己来定义一个过滤指令:filter,返回一个函数的形式 filter(name,callback(){//name:过滤器的名字,callback:匿名函数 return function(collection,keynames){//collection:该指令 ...
分类:
其他好文 时间:
2017-03-30 22:37:42
阅读次数:
168
php过滤处理手机自带Emoji表情//过滤掉emoji表情
publicfunctionfilterEmoji($str){
$str=preg_replace_callback(‘/./u‘,function(array$match){
returnstrlen($match[0])>=4?‘‘:$match[0];
},$str);
return$str;
} $content=$this->filterEmoji($content);
if(empty(..
分类:
移动开发 时间:
2017-03-30 20:10:56
阅读次数:
404
CreateTime--2016年12月18日16:18:15Author:Marydon <script type="text/javascript"> function parentFun (callBack) { console.log("主函数开始运行"); console.log("主函数 ...
分类:
其他好文 时间:
2017-03-30 19:04:52
阅读次数:
144
我发现好多倒计时的插件,刷新都会变成从头再来,于是自己用vue2.0写了一个,测试通过,直接上代码 如下是组件代码: <template> <span :endTime="endTime" :callback="callback" :endText="endText"> <slot> {{conte ...
分类:
其他好文 时间:
2017-03-30 11:42:44
阅读次数:
208
爬虫基于回调和事件的方式去实现,回调也是被诟病已久的问题尤其是callback这种,无论是阅读还是调试都很费劲,甚至我们连代码的堆栈都看不到,这是一种反人类的写法,Promise来拜托这种痛苦的方式传统方式实现动画效果:<!DOCTYPEhtml>
<html>
<head>
<..
分类:
Web程序 时间:
2017-03-28 22:13:32
阅读次数:
260
get请求1,jsonp跨域<script>
angular.module("myApp",[])
.controller("myCtrl",[‘$scope‘,‘$http‘,function($scope,$http){
$http.get(‘http://lolapi.games-cube.com/champion?callback=JSON_CALLBACK‘,{headers:{"DAIWAN-API-TOKEN":"C37EA-3B332-C2E3A-7A1FB"}}..
分类:
其他好文 时间:
2017-03-28 20:00:48
阅读次数:
220