博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ue4访问php接口
阅读量:5305 次
发布时间:2019-06-14

本文共 1564 字,大约阅读时间需要 5 分钟。

 继上一篇介绍ue4打开web url窗口,这篇就来介绍下怎么访问php接口。

要做的两步:

1.c++自己写个接受请求的方法

 f Post lhc-URL Request就是自定义的c++方法,

/**###lhc * 增加一个参数,接收一个FString,该参数的意义是:用URL的途径向php webservice发送数据,该数据的格式是key=value&key=value....** @param	WorldContextObject		* @param	url						**/void UJsonFieldData::PostRequest_lhc(UObject* WorldContextObject, const FString pm_lhcDataconst, const FString& url){	/*FString outStr;	TSharedRef
> JsonWriter = TJsonWriterFactory
::Create(&outStr); // Start writing the response WriteObject(JsonWriter, "", new FJsonValueObject(lhc_jsonData)); JsonWriter->Close(); // Log the post data for the user (OPTIONAL) UE_LOG(LogTemp, Warning, TEXT("Post data: %s"), *outStr);*/ // Create the post request with the generated data TSharedRef< IHttpRequest > HttpRequest = FHttpModule::Get().CreateRequest(); HttpRequest->SetVerb("POST"); HttpRequest->SetURL(CreateURL(url)); //###lhc 因为目前不知道php webservice取得JSON数据的代码怎么写,而且目前php service也没有必须获得客户端JSON数据(一个对象结构)的需求, //因此,暂时先通过URL的方式发送数据,用Key=value的形式,每组Key=Value之间用&分隔,如:name=a1&password=q1 //HttpRequest->SetHeader("Content-Type", "application/json"); HttpRequest->SetHeader("Content-Type", "application/x-www-form-urlencoded"); //###lhctmp //HttpRequest->SetContentAsString(outStr); //FString siwe = "name=a1&password=q1"; HttpRequest->SetContentAsString(pm_lhcDataconst); HttpRequest->OnProcessRequestComplete().BindUObject(this, &UJsonFieldData::OnReady); // Execute the request HttpRequest->ProcessRequest();}

  

 

2.按钮event

 

转载于:https://www.cnblogs.com/y114113/p/6289834.html

你可能感兴趣的文章
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Java Session 介绍;
查看>>
spoj TBATTLE 质因数分解+二分
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>