很多時候我們可以通過單獨傳送乙個post請求來測試一些功能,傳送的方式有很多,如:在linux中通過curl命令或者httpclint,ajax等等
全部**如下:
string data = "json格式的資料";
string dataurl = "要請求的的url";
usernamepasswordcredentials creds = new usernamepasswordcredentials("賬號","密碼");//訪問該**需要密碼和賬號
client.getstate().setcredentials(authscope.any,creds);
post.getparams().setparameter(httpmethodparams.http_content_charset,"utf-8");//定義編碼格式,否則中文亂碼
namevaluepair p1 = new namevaluepair("operation","import");//服務端已經設定好的引數
namevaluepair p2 = new namevaluepair("contenttype","json");
namevaluepair p3 = new namevaluepair("name","test01");
namevaluepair p4 = new namevaluepair("content",data);
post.setrequestbody(new namevaluepair);//設定引數
try catch (exception e)
post.releaseconnection();//釋放鏈結
測試的功能是提交請求後,傳遞的json資料可以生成乙個相應的頁面。
該請求只是乙個單獨的請求,這是比較簡單的
lg
ajax提交的乙個post
頁面js提交 function loadconts function data acction裡的方法 public string showcontpicmethod if gettype null if getclassify null if getarea null perlist dao.fi...
Ajax提交post請求
前言 博主之前有篇文章是快速入門ajax,主要是利用ajax做簡單的get請求,今天給大家分享一篇利用ajax提交post請求,以及使用post時需要注意的地方,還是以案例的方式告訴大家。案例 登錄檔單 06 ajax reg.html檔案 頁面中主要有乙個表單,使用了onsubmit事件,在ons...
flask如何開發乙個post請求
如何實現 傳送乙個請求方式為post的url,獲取form請求體中的引數值,設定到響應體裡去 encoding utf 8 import json from flask import flask,request 啟動 ouyangsong ou yang methods post 預設根路徑 def...