用restTemplate调用接口,参数有默认值,如果操作?
比如,调用接口需要传入参数有count,type,但是type有默认值,那我想用type的默认值,我这种操作正确吗?
思路1:
JSONObject oj = new JSONObject();
oj.put("count","4");
oj.pt("type",null);
restTemplate.getForObject(url, JSONObject.class, oj);
思路2:
JSONObject oj = new JSONObject();
oj.put("count","4");
restTemplate.getForObject(url, JSONObject.class, oj);
这两种思路哪种正确?
这个类有其他方法支持强类型的,不一定都是JSONObject这一种对象
https://blog.csdn.net/itguangit/article/details/78825505 这里有几个例子
可以的哦,嗯
建议改进一下排版,支持 markdown 语法
– dudu 4年前哎。。。没人回答
– lanto_liang 4年前