1. 客户端jQuery代码 ?? ?页面上负责发送Post请求的jQuery代码如下: $.ajax({
type: "POST",
url: "/receive",
data: $("#data").val(),
contentType: "text/plain",
processData: false,
suc...
分类:
Web程序 时间:
2014-11-20 12:16:02
阅读次数:
270
1.prepareForSegue:
Now we know what the destinationViewController is we can set its data properties. To receive information back from a scene we use
delegation. Both are shown simply in the followi...
分类:
其他好文 时间:
2014-11-20 10:21:53
阅读次数:
153
Normally, we can set default value for function param://Here use "Hello" as default paramvar receive =function(message="Hello", handle){ handler(me...
分类:
其他好文 时间:
2014-11-20 06:48:53
阅读次数:
185
在SecureCRT这样的ssh登录软件里, 通过在Linux界面里输入rz/sz命令来上传/下载文件. 对于RHEL5, rz/sz默认没有安装所以需要手工安装.sz: 将选定的文件发送(send)到本地机器;rz:运行该命令会弹出一个文件选择窗口, 从本地选择文件上传到服务器(receive)....
分类:
系统相关 时间:
2014-11-18 23:24:44
阅读次数:
204
#ifndef __CommonMsgHandler___#define __CommonMsgHandler___#include "cocos2d.h"#include #include #include #include #include #include "receive_data/Base...
分类:
其他好文 时间:
2014-11-13 18:27:07
阅读次数:
201
不废话说重点: AndroidManifest.xml文件代码如下: <uses-permission android:name="android.permission.RECEIVE_SMS"/> <!-- 拦截短信(就是接受短些的权限) -->
<uses-permission android:name="android.per...
分类:
移动开发 时间:
2014-11-12 23:10:25
阅读次数:
432
上一讲说到了protobuf有关的东西,各位看官记得下载源码,然后把google放进项目中,今天着重关注一下关于消息的hpp文件,直接上代码#ifndef RECEIVE_MESSAGE_HPP#define RECEIVE_MESSAGE_HPP#include #include #include...
分类:
其他好文 时间:
2014-11-12 21:03:50
阅读次数:
250
/*串口基础类库(WIN32)ver0.1编译器:BC++5;C++BUILDER4,5,6,X;VC++5,6;VC.NET;GCC;class_base_com:虚基类基本串口接口;class_aync_com:同步I/O串口类;class_sync_com:异步I/O串口类;class_thread_com:异步I/O辅助读监视线程可转发窗口消息串口类(可继承虚函数on_receive用于..
分类:
其他好文 时间:
2014-11-10 15:50:14
阅读次数:
138
同步和异步Socket的区别是,同步Socket会阻塞当前进程,而异步Socket则不会。 首先,一个最简单的同步UDP收发程序实例。可以看到,发送调用Send()函数之后,开始调用Receive接收,这个时候程序会一直在这里等待,直到收到数据。 using System;using Sys...
分类:
其他好文 时间:
2014-11-09 23:29:04
阅读次数:
266
上次说到对于那种有内容的包bool TCPServer::on_receive_data(int channel_id, void* data, int len){ packet pkt; { pkt.data = m_memPool.popPkt(len);//从内存池分...
分类:
其他好文 时间:
2014-11-08 07:03:30
阅读次数:
193