Restful傳遞數組參數的兩種方式

第一種,直接傳遞數組json

  • js直接傳遞數組
var data = ["123","456"];
that.loadDictionarys(data).subscribe({ next: res => { }, error: err => { } });
  • 後端接口直接接收數組
@POST
    @Path("/loadDictionarys")
    @Produces({ MediaType.APPLICATION_JSON, FastJSONProvider.TEXT_JSON, FastJSONProvider.TEXT_FASTJSON })
    public RestResponse loadDictionarys(String[] dicItemCodeArr) {
            Map<String, DictionaryVO> dictionaryVOs = new HashMap<>();
            RestResponse successResult = RestResponse.successResult(dictionaryVOs);
            return successResult;
    }

第二種,經過json對象傳遞後端

  • js組裝json對象傳遞數組
var data = {
  arr:["123","456"]
};
that.loadDictionarys(data).subscribe({
    next: res => {      
    },
    error: err => {
    }
});
  • 後端接口經過@FormParam註解可用String集合接收
@POST
    @Path("/loadDictionarys") @Produces({ MediaType.APPLICATION_JSON, FastJSONProvider.TEXT_JSON, FastJSONProvider.TEXT_FASTJSON }) public RestResponse loadDictionarys(@FormParam("arr") List<String> arr) { Map<String, DictionaryVO> dictionaryVOs = new HashMap<>(); RestResponse successResult = RestResponse.successResult(dictionaryVOs); return successResult; }
相關文章
相關標籤/搜索