post请求,data数据的封装问题?
以下是非微信小程序的客户端请求数据参数格式:
JSONObject data = new JSONObject();
data.put(“action”, “login”);
data.put(“time”, “2019-08-05”);
String sign = SHA256Util.Encrypt(data.toString(), “”).toUpperCase(); [SHA256加密]
JSONObject jsonObject = new JSONObject();
jsonObject.put(“data”, data);
jsonObject.put(“Sign”, sign);
而在微信小程序中,用post请求,data的数据为:jsonObject.toString(); 该怎么封装data的数据?