js傳送get post請求的方法簡介

2021-10-25 04:02:52 字數 1507 閱讀 1098

post請求:

傳送的引數格式不同,請求頭設定不同,具體參照 http請求中請求頭content-type講解

傳送的引數格式不同,後台獲取方式也不相同 php請看 php獲取post資料的三種方法

一、使用xmlhttprequest

主要分三步:

第一步:建立需要的物件,這裡主要用到的是xmlhttprequest,注意需要考慮早期的ie;

第二步:連線和傳送;

第三步:接收;

get請求:

var httprequest = new xmlhttprequest();//第一步:建立所需的物件

httprequest.open('get', 'url', true);//第二步:開啟連線 將請求引數寫在url中 ps:"./ptest.php?name=test&nameone=testone"

httprequest.send();//第三步:傳送請求 將請求引數寫在url中

/*** 獲取資料後的處理程式

};

**post請求**:****

var httprequest = new xmlhttprequest();//第一步:建立需要的物件

httprequest.open('post', 'url', true); //第二步:開啟連線

httprequest.send('name=teswe&ee=ef');//傳送請求 將情頭體寫在send中

/** * 獲取資料後的處理程式

};

post方式傳送json

;//第一步:建立需要的物件

//第二步:開啟連線/***傳送json格式檔案必須設定請求頭 ;如下 - */

;//設定請求頭 注:post方式必須設定請求頭(在建立連線後設定請求頭)var obj = ;

//傳送請求 將json寫入send中

/** * 獲取資料後的處理程式

原生JS傳送GET POST請求

主要分三步 第一步 建立需要的物件,這裡主要用到的是xmlhttprequest,注意需要考慮早期的ie 第二步 連線和傳送 第三步 接收 第一步 建立所需的物件 第二步 開啟連線 將請求引數寫在url中 ps ptest.php?name test nameone testone 第三步 傳送請求...

linux傳送get post請求

使用curl指令 普通請求 curl i i v 帶引數請求 curl v param1 1 m2 2 get請求攜帶的引數只到param1 1,符號在linux系統中為後台執行的操作符,此處需要使用反斜槓 轉義 使用wget指令 wget使用curl指令 curl d username user1...

python模擬傳送GET POST請求

直接上 示例。具體看注釋 import requests import json def get url get請求 req requests.get url 輸出狀態碼 print req.status code 輸出返回內容 print req.text def post url,cookie ...