我在网上找不到任何线索,因为我想很多人已经放弃了Unity的WWW课程来处理复杂的事情。我正在使用WWW类与我的REST API交谈,我需要找到一种方法来在每个请求之后执行一些代码。 (如果响应是401,我需要检查响应代码并执行一些默认行为)
有没有一种简单的方法可以达到这个目的?
(我正在使用协同程序发送请求)
提前致谢。
更新:当前代码示例
Auth.cs:
public IEnumerator Login(WWWForm data, Action<APIResponse> success, Action<APIResponse> failure)
{
WWW request = new WWW (API + "auth/authenticate", data);
yield return request;
if (request.responseHeaders ["STATUS"] == "HTTP/1.1 401 Unauthorized") {
//Do something, I want to do this on every request, not just on this login method
}
if (request.error != null) {
failure (new APIResponse(request));
}
else {
//Token = request.text.Replace("\"", "");
Token = request.text;
Debug.Log (Token);
success (new APIResponse (request));
}
}
用法:
StartCoroutine (auth.Login (data, new Action<APIResponse> (response => {
//Do stuff
}), new Action<APIResponse> (response => {
//Do stuff
})));
答案 0 :(得分:2)
我没有使用WWW和rest api来实现“异步”方式,使用超时和异常处理对我有用:
public static string PostJson(string host, string resourceUrl, object json)
{
var client = new RestClient(host);
client.Timeout = Settings.LIGHT_RESPONSE_TTL; //set timeout duration
var request = new RestRequest(resourceUrl, Method.POST);
request.RequestFormat = DataFormat.Json;
request.AddBody(json);
try
{
var response = client.Execute(request);
return response.Content;
}
catch (Exception error)
{
Utils.Log(error.Message);
return null;
}
}
使用此功能:
var result = JsonUtils.PostJson("http://192.168.1.1:8080", "SomeEndPoints/abc/def", jsonString);
if (string.IsNullOrEmpty(result))
{
//Error
}
else
{
//Success
}
更新:为确保此类调用不会阻止用户界面,请使用以下代码:
Loom.RunAsync(() => {
var result = JsonUtils.PostJson("http://192.168.1.1:8080", "SomeEndPoints/abc/def", jsonString);
if (!string.IsNullOrEmpty(result)) {
}
});
您可以下载Loom here。可以使用以下GIF动画演示此类代码的示例使用,请注意UI(循环指示符)未被阻止!