代码搜索:http_request
找到约 211 项符合「http_request」的源代码
代码结果 211
www.eeworm.com/read/136989/5828622
cpp http_request.cpp
// http_request.cpp,v 1.1 2000/04/27 23:43:17 jxh Exp
#include "HTTPU/http_request.h"
#include "HTTPU/parse_http_request.h"
void
HTTP_Request::parse_line (void)
{
this->status_ = STATUS_OK
www.eeworm.com/read/100926/6264737
cpp http_request.cpp
// http_request.cpp,v 1.1 2000/04/27 23:43:17 jxh Exp
#include "HTTPU/http_request.h"
#include "HTTPU/parse_http_request.h"
void
HTTP_Request::parse_line (void)
{
this->status_ = STATUS_OK
www.eeworm.com/read/465494/7055705
js ajax-reader.js
/*
*
* ajax-reader.js (c) 2006 Michael Thompson lMaker@michaelthompson.org
* for the latest info visit http://michaelthompson.org/doc/
*
* This program is free software; you can redistribute it and/or
www.eeworm.com/read/375808/9349138
js pw_ajax.js
var http_request = false;
function send_request(url,callback,data){
//alert(url);
//var http_request=false;
if(window.ActiveXObject){
try{
http_request=new ActiveXObject("Msxml2.XMLHTTP");
}
www.eeworm.com/read/462347/7202605
js ajax_func.js
//定义XMLHttpRequest对象实例
var http_request = false;
//定义可复用的http请求发送函数
function send_request(method,url,content,responseType,callback) {//初始化、指定处理函数、发送请求的函数
http_request = false;
//开始初始化XMLHttpRe
www.eeworm.com/read/312030/13620013
js pw_ajax.js
var http_request = false;
function send_request(url,callback,data){
http_request=false;
if(window.XMLHttpRequest){
http_request=new XMLHttpRequest();
if(http_request.overrideMimeType){
www.eeworm.com/read/305789/13760930
js ajax_func.js
//该源码下载自www.51aspx.com(51aspx.com)
var http_request = false;
function send_request(method,url,content,responseType,callback){
http_request=false;
if(window.XMLHttpRequest){//Mozilla浏览器
http