<!DOCTYPE html> <html> <head> <title>XMLHttpRequest Demo</title> </head> <body> <h1>XMLHttpRequest Demo</h1> <button onclick="makeRequest()">发送请求</button> <p id="response"></p> <script> function makeRequest() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { document.getElementById("response").innerHTML = xhr.responseText; } }; xhr.open("GET", "http://example.com/api/data", true); xhr.send(); } function interceptRequest() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { document.getElementById("response").innerHTML = xhr.responseText; } }; // 拦截原始请求并发送新请求 var originalOpen = xhr.open; xhr.open = function(method, url, async, user, password) { originalOpen.call(this, method, "http://example.com/api/newdata", async, user, password); }; xhr.send(); } </script> </body> </html>
时间: 2024-04-29 21:19:08 浏览: 142
这段代码是一个利用 XMLHttpRequest 发送 HTTP 请求的示例。当用户点击“发送请求”按钮时,会向 http://example.com/api/data 发送 GET 请求,并将响应的内容显示在页面上。另外还定义了一个名为 interceptRequest 的函数,可以用来拦截原始请求并发送新的请求。具体来说,它会在 xhr.open 方法被调用之前,将原始请求的 URL 修改为 http://example.com/api/newdata,然后再发送请求获取数据。
相关问题
<!DOCTYPE html> <html> <head> <title>XMLHttpRequest Demo</title> </head> <body> <h1>XMLHttpRequest Demo</h1> <p id="response"></p> <script> window.onload = function () { makeRequest(); }; function makeRequest() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { document.getElementById("response").innerHTML = xhr.responseText; } }; xhr.open( "GET", "http://finance-sit.test.hihonor.com/fin/eipm/dom/servlet/environment", true ); xhr.send(); } </script> </body> </html>
这是一段使用 XMLHttpRequest 对指定 URL 进行 GET 请求的代码。在代码中,通过创建 XMLHttpRequest 对象,设置 onreadystatechange 事件监听器来监听请求状态的变化。当请求状态变为 4(表示请求已完成)且状态码为 200(表示请求成功),通过获取响应的文本内容,将其显示在指定的 HTML 元素中。此代码将从指定 URL 获取数据并在页面上显示结果。
<!DOCTYPE html> <html> <head> <title>Intercept Request Demo</title> </head> <body> <h1>Intercept Request Demo</h1> <p id="response"></p> <script> function interceptRequest() { // 保存原 XMLHttpRequest 对象 var originalXhr = window.XMLHttpRequest; // 创建一个新的 XMLHttpRequest 对象 var newXHR = new originalXhr(); // 重写 open 方法,实现拦截原请求并发送新请求 newXHR.open = function (method, url, async, user, password) { // 发送新请求 var newUrl = "http://example.com/new-url"; originalXhr.prototype.open.call(this, method, newUrl, async, user, password); }; // 返回新的 XMLHttpRequest 对象 return newXHR; } // 在页面加载时拦截请求并发送新请求 window.onload = function () { var xhr = interceptRequest(); xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { document.getElementById("response").innerHTML = xhr.responseText; } }; xhr.open("GET", "http://finance-sit.test.hihonor.com/fin/eipm/dom/servlet/environment", true); xhr.send(); }; </script> </body> </html>
这段代码展示了如何使用JavaScript拦截XMLHttpRequest对象的请求,并发送新的请求。在这个例子中,使用了一个自定义的interceptRequest函数来创建一个新的XMLHttpRequest对象,然后重写了它的open方法,将原请求的URL替换成了"http://example.com/new-url"。最后,在页面加载时,使用这个新的XMLHttpRequest对象发送了一个GET请求,并在回调函数中处理了响应。需要注意的是,这个例子仅用于演示拦截请求的原理,实际中需要根据具体的需求进行相应的修改和优化。
阅读全文