-4
這要在關鍵的Json發送的JSONObject。所以請告訴如何使用抽球發送它。 json = {「product」:「magie」}如何發送這種類型的數據在POST請求的凌空?
如何在Volley中發送這些數據,我在下面添加了asyncTask代碼,以便使用該類型的數據。
enter code here
protected void onPreExecute() {
if (progress)
GlobalAlerts.showProgressDialog(context);
}
@Override
protected String doInBackground(String... params) {
String resp = null;
JSONObject jsonObject = new JSONObject();
try {
jsonObject.put("product","magie");
} catch (JSONException e) {
e.printStackTrace();
}
String data = "json=" + jsonObject.toString();
String url ="http://anc.php";
resp = new JsonCall().executeHttpPostRequest(url, data);
return resp;
}
protected void onPostExecute(String resp) {
if (progress)
GlobalAlerts.hideProgressDialog();
if (resp != null) {
callback.onTaskComplete(resp);
} else {
GlobalAlerts.singleAlert((Activity) context, context.getString(R.string.warning), "Error", false);
}
}
發佈您的代碼。 – vinoth12594
請檢查該https://www.simplifiedcoding.net/android-volley-post-request-tutorial/其他張貼您在這裏的一些代碼,你做 – Shailesh
您可能會發現下面的鏈接你的答案: - [> HTTP:/ /stackoverflow.com/questions/24873718/how-do-i-make-a-volley-jsonobject-request-with-a-custom-object-as-a-parameter][1] –