如何在Android中使用改造发布Json Array?

时间:2019-07-10 04:24:28

标签: android json gson retrofit2

我无法使用改装从添加到购物车列表中发布Json数组。用户将选择产品,然后将其添加到购物车。 Ineed使用sqlite db保存该数据。最终订单确认状态-我想将所有产品(列表)以这种格式代码发送到服务器。我在Google上搜索,找不到任何解决方案。

JsonArray datas = new JsonArray();
JsonObject object = new JsonObject();

[
    {
        "name": "Phone",
        "quantity": 50,
        "price": 30000
    },
    {
        "name": "Computer",
        "quantity": 10,
        "price": 15000
    }
]

1 个答案:

答案 0 :(得分:0)

这很简单,就像这样:-

@POST("yourApiEndPoint")
Call<YourPojoClass> yourMethodName(@Query("data") JSONArray jsonArray);