当前位置: 首页 > 知识库问答 >
问题:

改装POST-应为BEGIN_对象,但在第1行第2列路径处为字符串$[duplicate]

闻人昕
2023-03-14

我正在努力学习改型,尽管从数据库中检索文本相当容易。我在向数据库提交数据时有点麻烦。

我提交的数据会进入数据库,但每次提交数据时都会显示此错误。toast表示-应为BEGIN_对象,但在第1行第2列路径处为字符串$

这是我的注册API活动:

公共接口注册器API{

@FormUrlEncoded
@POST("/insertText.php")
Call<Result> createUser(
        @Field("name") String name,
        @Field("age") String age);
}

这是我的个人课:

public class Person {

@SerializedName("name")
private String name;
@SerializedName("age")
private String age;


public Person(String name, String age) {
    this.name = name;
    this.age = age;
}

public String getName() {
    return name;
}

public String getAge() {
    return age;
}

} 

这是我的插入活动:

 public static String ROOT_URL = "https://MYURL/";

public void insertUser(){

    String name = editTextName.getText().toString().trim();
    String age = editTextAge.getText().toString().trim();

    Gson gson = new GsonBuilder()
            .setLenient()
            .create();

    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(ROOT_URL)
            .addConverterFactory(GsonConverterFactory.create(gson))
            .build();

    RegisterAPI api = retrofit.create(RegisterAPI.class);

    Person user = new Person(name, age);

    Call<Person> call = api.createUser(user.getName(),user.getAge());

    call.enqueue(new Callback<Person>() {
        @Override
        public void onResponse(Call<Person> call, Response<Person> response) {
            Toast.makeText(insertActivity.this, "SUCCESS", Toast.LENGTH_SHORT).show();
        }
        @Override
        public void onFailure(Call<Person> call, Throwable t) {
            Toast.makeText(insertActivity.this, t.getMessage(), Toast.LENGTH_LONG).show();
        }
    });

}

检索文本

[{"name":"Gionne","age":"12"},
{"name":"Harley","age":"25"},
{"name":"Gamboa","age":"30"},
{"name":"Lapuz","age":"35"}]

以下问题的答案

我想回答我自己的问题,但我无法回答下面的问题,因为我被标记为重复。不管怎么说,问题是两件事,我的PHP insertText。php文件和我的对象类。

这是我的插入文本。php文件:

<?php 

require_once('dbConnect.php');

    $name = $_POST['name'];
    $age = $_POST['age'];

    $sql = "INSERT INTO javaScriptTesting 
    (name,age) 
    VALUES 
    ('$name','$age')";


 if(mysqli_query($con,$sql)) {
   //ADDED THIS LINE
   $response["message"] = "DATA INSERTED";

   echo json_encode($response);
 } else {
  //ADDED THIS LINE
   $response["message"] = "UNSUCCESSFUL";

   echo json_encode($response);
 }

  mysqli_close($con);

这是我的对象类:

public class Person {

@SerializedName("name")
private String name;
@SerializedName("age")
private String age;

  //ADDED THIS LINE
private String message;

public Person(String name, String age) {
    this.name = name;
    this.age = age;
}

public String getName() {
    return name;
}

public String getAge() {
    return age;
}

//ADDED THIS LINE
public String getMessage() {
    return message;
}

共有1个答案

程鸿波
2023-03-14

在改造2.0以执行上述POST请求的过程中,您应该使用RequestBody type作为这样的参数。

@Multipart
@POST("XXXX")
Call<PlanResponse> myPlans(@Part(Constants.ACTION_ID) RequestBody actionId, @Part(Constants.OFFER_CODE) RequestBody offerCode);

在这里如何从字符串中获取请求体。

String somevalue = "somevalue";
RequestBody body = RequestBody.create(MediaType.parse("text/plain"), somevalue);
 类似资料: