在通过参数化 url 发布我的 Entire 中的数据时遇到问题,我不知道为什么会这样,URL 在发布后返回某条消息,下面是我的 URL:
http://bbs.eamobiledirectory.com/Mobile/MobileApi.aspx?Action=NewSalesReport&username=USERNAME&assID=ASSIGNID&repdetails=details&appoi_date=date。
这就是我发布数据的方式:
void OnSubmitReport(object sender, System.EventArgs e)
{
PostData();
}
public async void PostData()
{
string details = report_details_entry.Text;
string date = nextappointment_entry.Text;
var formContent = new FormUrlEncodedContent(new[]
{
new KeyValuePair<string, string>("unm", USERNAME),
new KeyValuePair<string, string >("assinID", ""+ASSIGNID),
new KeyValuePair<string, string>("details", details),
new KeyValuePair<string, string>("appoi_date", date)
});
var response = await client.PostAsync("http://bbs.eamobiledirectory.com/Mobile/MobileApi.aspx?Action=NewSalesReport",formContent);
}
我想要的是提交条目中的数据,在病房后,我在显示警报消息中返回一条消息。
直到你弄清楚为什么 FormUrlEncodedContent 不起作用(我真的很想知道为什么它不起作用(
您可以通过以下方式发布来解决问题:
var url = string.Format("http://bbs.eamobiledirectory.com/Mobile/MobileApi.aspx?Action=NewSalesReport&unm={0}&assignID={1}&report_details={2}&appoi_date={3}",
USERNAME,
ASSIGNID,
details,
date);
var response = await client.PostAsync(url, null);
var responseContent = await response.Content.ReadAsStringAsync();