代码搜索:REQUEST
找到约 10,000 项符合「REQUEST」的源代码
代码结果 10,000
www.eeworm.com/read/279804/10392740
js http.js
/**
* http.js: utilities for scripted HTTP requests
*
* From the book JavaScript: The Definitive Guide, 5th Edition,
* by David Flanagan. Copyright 2006 O'Reilly Media, Inc. (ISBN: 0596101996)
*/
www.eeworm.com/read/279804/10392746
js 05.js
/**
* Send an HTTP POST request to the specified URL, using the names and values
* of the properties of the values object as the body of the request.
* Parse the server's response according to its
www.eeworm.com/read/279804/10392759
js 02.js
/**
* Use XMLHttpRequest to fetch the contents of the specified URL using
* an HTTP GET request. When the response arrives, pass it (as plain
* text) to the specified callback function.
*
* Thi
www.eeworm.com/read/279804/10392764
js 06.js
HTTP._getResponse = function(request) {
// Check the content type returned by the server
switch(request.getResponseHeader("Content-Type")) {
case "text/xml":
// If it is an XML doc
www.eeworm.com/read/279804/10392768
js 04.js
/**
* Use an HTTP HEAD request to obtain the headers for the specified URL.
* When the headers arrive, parse them with HTTP.parseHeaders() and pass the
* resulting object to the specified callback