C/C++怎么实现post数据提交?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C/C++怎么实现post数据提交?相关的知识,希望对你有一定的参考价值。
例如某网站登录,我用httpwatch获取了post数据了,怎么用C发送
以下方法用CURL提交表单1. 编译环境.
安装vs2010或其他版本. vs2010 express版也可以。不要低于vc6.
2. 搜索curl-7.25.0.zip,下载。
解压到c:\curl-7.25.0
打开Visual Studio Command Prompt (2010)
cd \curl-7.25.0\winbuild
nmake /f Makefile.vc mode=dll USE_SSSPI=no ENABLE_IDN=no
编译成功后 cd ..\builds
到一个名字为libcurl-....lib的子目录里找到libcurl.dll和libcurl.lib, 保存到一个目录下备份,下面要用。
3. 打开vc++ 2010, File->New project,选Win32 Project, 输入一个项目名。下面点Next,勾上Console Application和Empty Project.
4. 配置项目
到我的文档下找到vs2010 projects目录,找到 solution名字\项目名字 目录,
把curl-7.25.0目录下的include目录拷贝到项目目录下
把2备份好的libcurl.dll和libcurl.lib拷贝到项目目录.
在vc++中右键点击项目名(或Alt+F7), 点开Configuration Properties, 点vc++directories
点Include Directories, 点Edit, 添加$(ProjectDir)include 确定
在点击左侧的Linker, 点Input,点Additional Dependences, 点Edit, 添加一行$(ProjectDir)\libcurl.lib 确定
5. 代码。
右键点项目名字,Add New Item->C++ File, name写main.c, 输入代码:
/* 抱歉,这里不好贴链接,版权没法贴,版权去看http-post.c */
#include <stdio.h>
#include <curl/curl.h>
#include <stdlib.h>
int main(void)
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl)
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, "这里写网址");
/* Now specify the POST data */
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "name=daniel&project=curl");
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
system("pause");
return 0;
点vc++绿色的三角编译运行。 参考技术A WinInet 或者WinHttp 都行吧 参考技术B 标准库没有这种函数吧,需要api
jQuery的ajax post方式提交数据时参数问题。如果参数过多怎么办?
如$.post("Save.aspx",a:av,b:bv,c:cv,function(data))
如果 a:av,b:bv,c:cv 这样的参数很多怎么办?
以前写的一个方法,可以做参考:
//获取受益人信息
function getBenifyinfo()
var jsonString = ;
var benifys = [] ;
$("form").each(function(i)
var self = $(this) ;
var benifyInfo = ;
$.each(self.find("input[type!='button'],select"), function (name, o)
var iptSelf = $(this);
var iptSelfId = iptSelf.attr("id") ;
var value = o.value ;
iptSelfId = iptSelfId.split("_")[0];
if(iptSelfId == "benifyName" || iptSelfId == "benifycountry" || iptSelfId == "benifyidenfynumber" )
value = encodeURI(value);
eval("benifyInfo."+iptSelfId+"=value");
);
benifys[i] = benifyInfo ;
);
jsonString = insert:benifys ;
return jsonString ;
参考技术A 拼接成一个json参数.
data:"Param":["text":"a","value":"av","text":"b","value":"bv",...];
或者
data : "filter=[a=av,b=bv,c=cv...]";
这样的格式
然后在后台将其处理成hashtable或者其他对象.追问
这个我在网上看到了。有其他办法吗?如果我的参数名字都没有规律,怎么处理?有没有一个方法,把整个表单参数全部提交?
追答没有规律也要创造规律,至少有一点很清楚,一个有用的变量就必须能读能用,否则要他何用?
即然你用了jquery,就可以有计划有给"要用"的控件加class名,然后用$(".className")获取元素集合,根据type或者其依据获取id:value,做自动拼接.
你总不能把整个$("form").html()当参数回传吧...后台不得累死...
以上是关于C/C++怎么实现post数据提交?的主要内容,如果未能解决你的问题,请参考以下文章
C/C libcurl如何POST表单提交,只是普通的web表单提交数据
jQuery的ajax post方式提交数据时参数问题。如果参数过多怎么办?