日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > c/c++ >内容正文

c/c++

springMvc 传子 bean 中有bean

發布時間:2023/12/19 c/c++ 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 springMvc 传子 bean 中有bean 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

2019獨角獸企業重金招聘Python工程師標準>>>

bean 類型 ?如下

1. json 字符串

?? ??? ??? ?$.ajax({
?? ??? ??? ? ? ? ? ?url :'${ctx}/test/testData/f1?book=java',
?? ??? ??? ? ? ? ? ?type: 'post',
?? ??? ??? ? ? ? ? ?dataType : "json",
?? ??? ??? ? ? ? ? contentType:'application/json;charset=UTF-8',//關鍵是要加上這行
?? ??? ??? ? ? ? ? data : JSON.stringify( {id:'22',remarks:'aaa',father:{id:'333',remarks:'bbb'}}),
?? ??? ??? ? ? ? ? ?async : false, // 同步請求
?? ??? ??? ? ? ? ? ?success : function(data) {
?? ??? ??? ? ? ? ? ? ? ? debugger ;
?? ??? ??? ? ? ? ? ?}
?? ??? ??? ? ? ?});

后臺代碼:

public String f1( @RequestBody User u,

2.json 對象 ?

?? ??? ??? ?$.ajax({
?? ??? ??? ? ? ? ? ?url :'${ctx}/test/testData/f2?book=java',
?? ??? ??? ? ? ? ? ?type: 'post',
?? ??? ??? ? ? ? ? ?dataType : "json",
?? ??? ??? ? ? ? ? ?data : {id:'22',remarks:'aaa','father.id':'333','father.remarks':'bbb'},
?? ??? ??? ? ? ? ? ?async : false, // 同步請求
?? ??? ??? ? ? ? ? ?success : function(data) {
?? ??? ??? ? ? ? ? ? ? ? debugger ;
?? ??? ??? ? ? ? ? ?}
?? ??? ??? ? ? ?});

public String f2( User u,

?

?

?

?

?? ?private static final long serialVersionUID = 1L;
?? ?private String id;
?? ?private String remarks;
?? ?
?? ?private ?User ?father;
?? ?
?? ?public String getId() {
?? ??? ?return id;
?? ?}
?? ?public void setId(String id) {
?? ??? ?this.id = id;
?? ?}
?? ?public String getRemarks() {
?? ??? ?return remarks;
?? ?}
?? ?public void setRemarks(String remarks) {
?? ??? ?this.remarks = remarks;
?? ?}
?? ?public User getFather() {
?? ??? ?return father;
?? ?}
?? ?public void setFather(User father) {
?? ??? ?this.father = father;
?? ?}

轉載于:https://my.oschina.net/u/1760858/blog/856889

總結

以上是生活随笔為你收集整理的springMvc 传子 bean 中有bean的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。