溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

javascript中如何以對象方式向后臺傳參

發(fā)布時間:2021-09-17 15:53:56 來源:億速云 閱讀:126 作者:柒染 欄目:編程語言

javascript中如何以對象方式向后臺傳參,針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

以對象方式向后臺傳參

	@ApiOperation(value = "更新Onsiteptw1yfcs詳細信息", notes = "根據(jù)url的id來指定更新對象,并根據(jù)傳過來的Onsiteptw1yfcs信息來更新Onsiteptw1yfcs詳細信息")
	@ApiImplicitParams({ 
			@ApiImplicitParam(name = "listpojo", value = "更新的對象", required = true, dataType = "List<Onsiteptw1yfcs>"),
			@ApiImplicitParam(name = "setfield", value = "跟新listpojo中對象的那些字段對應(yīng)的類字段不是表字段 不填默認更新所有字段 列如: item1,item2,item3", required = false, dataType = "String"),
			@ApiImplicitParam(name = "mapfilter", value = "更新條件,在數(shù)據(jù)寫好條件放上就好了 以集合形式接收 例如:{”column1=“:“2”,”column2 like “:”%li%“ } ", required = true, dataType = "Onsiteptw1yfcs")})
	
	@PutMapping("/v1/onsiteptw1yfcs/moreupdate")
	public Response updateBatchOnsiteptw1yfcs(@RequestBody Onsiteptw1yfcsParam param) {
		...
	}
var listpojo = {};
listpojo["mapfilter"] = {};
listpojo["setfield"] = "infoname,infocnt";//infoname =  '吊車:RTFK-120' , infocnt =  '是'
listpojo["listpojo"] = fields1;
listpojo1 = JSON.stringify(listpojo);console.debug('478::listpojo1>>>'+listpojo1);

$.ajax({
	url: url1,
	data:listpojo1,
	type: "put",
	dataType: "json",
	headers: {
		Authorization: authtoken
	},
	contentType:"application/json",
	success: function (result) {
		console.debug('success:'+JSON.stringify(result));
		mui.toast("OK"); 
	},
	error:function(e){
		console.debug('error:'+JSON.stringify(e));
	}
});	

關(guān)于javascript中如何以對象方式向后臺傳參問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI