1
我正在使用我的Xamarin表單將數據發送到我的控制器中的Action在我的WebAPI項目中的POST請求。帶斷點的代碼不會超越Xamarin表單發佈請求Http問題
client.BaseAddress = new Uri("192.168.79.119:10000");
我有命名空間System.Net.Http和using代碼中提到的系統。
private void BtnSubmitClicked(object sender, EventArgs eventArgs)
{
System.Threading.Tasks.Task<HttpResponseMessage> statCode = ResetPassword();
App.Log(string.Format("Status Code", statCode));
}
public async Task<HttpResponseMessage> ResetPassword()
{
ForgotPassword model = new ForgotPassword();
model.Email = Email.Text;
var client = new HttpClient();
client.BaseAddress = new Uri("192.168.79.119:10000");
var content = new StringContent(
JsonConvert.SerializeObject(new { Email = Email.Text }));
HttpResponseMessage response = await client.PostAsync("/api/api/Account/PasswordReset", content); //the Address is correct
return response;
}
需要一種方法來使POST請求到行動和發送該字符串或Model.Email
作爲參數。
你確定它沒有拋出異常嗎?嘗試添加一個方案(「http://」)到URI字符串 – Jason
這似乎有所幫助!但它仍然不會發布。 –
但問題是什麼?你有異常,一些消息等? – Eru