我正在尝试在我的应用程序中添加一个删除帐户选项,但是当我尝试删除该帐户时,我没有从Web服务器获得回复。
相反,我得到了错误:
org.json.JSONException: End of input at character 0 of
我试图将请求方法更改为DELETE,但是我对android和数据库不太熟悉,因此不确定是否可以使用。 我不确定问题是出在PHP还是Java代码上,当我在android studio中运行调试器时,字符串响应返回:
response: ""
php:
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$id = $_POST['id'];
require 'conn.php';
$sql = "DELETE * FROM Patients WHERE patientID='$id'";
if(mysqli_query($conn, $sql)){
$result['success'] = "1";
$result['message'] = "success";
echo json_encode($result);
mysqli_close($conn);
} else {
$result["success"] = "0";
$result["message"] = "Error!";
echo json_encode($result);
mysqli_close($conn);
}
}
?>
Java删除方法:
private void deleteAccount() {
final String name = this.name.getText().toString().trim();
final String lName = this.lName.getText().toString().trim();
final String dob = this.dob.getText().toString().trim();
final String email = this.email.getText().toString().trim();
final String password = this.password.getText().toString().trim();
final String passwordConf = this.cPassword.getText().toString().trim();
final String id = getID;
StringRequest stringRequest = new StringRequest(Request.Method.POST, URL_DELETE,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try {
JSONObject jsonObject = new JSONObject(response);
String success = jsonObject.getString("success");
if(success.equals("1")){
Toast.makeText(EditAccount.this, "Account Deleted", Toast.LENGTH_SHORT).show();
}
} catch (JSONException e) {
Toast.makeText(EditAccount.this, "Error: "+e.toString(), Toast.LENGTH_SHORT).show();
e.printStackTrace();
}
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(EditAccount.this, "Error: "+error.toString(), Toast.LENGTH_SHORT).show();
}
})
{
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> params = new HashMap<>();
params.put("id", id);
return params;
}
};
RequestQueue requestQueue = Volley.newRequestQueue(this);
requestQueue.add(stringRequest);
}
}
我希望吐司弹出来,并说帐户已删除,但我却收到了上面指出的错误消息。
p.s。这只是一个原型,所以我现在不担心安全性。
谢谢!
答案 0 :(得分:0)
无论问题是什么,我都会猜测一下,if($_SERVER['REQUEST_METHOD']=='POST')
是您问题的根源。
您的请求可能会错误地发送到服务器,并且method
未被识别为POST
,这将解释""
响应,因为您没有提供应该发生的替代方法条件失败。
发回错误的请求响应(400
),您将可以在Java代码中解决此问题... PHP很好。
if($_SERVER['REQUEST_METHOD']=='POST') { /* ... */ }
else {
http_response_code(400);
// exit('Bad request method.');
// or for a json response:
echo json_encode([
'success' => "0",
'message' => "Bad Request Method used."
]);
}
此外,我不得不说...安全性始终是一个要考虑的问题...它只需要花费几行代码即可过滤用户请求,并通过准备好的语句使您的查询更加安全。这更多是一个习惯问题。有一天,您可能会忘记这里或那里的查询。