編集:このようなものですが、これも機能していませんが、問題があると思います
var stringifyObj = JSON.stringify({
"addressAddressId":$('#address').val(){
"cityId:"$('#city').val(){
"postalCode":$('#postalCode').val()
}
}
});
* Netbeans でテスト クライアントを生成する場合、JSON 構造 (GET/JSON) はそのようなものですが、それを Javascipt と Strinfy 関数でどのようにコーディングできますか? *
"addressAddressId": {
"addressId": 1,
"address": "Järnvägen 2",
"address2": null,
"district": null,
"postalCode": "20360",
"phone": null,
"coordinates": null,
"latitude": null,
"longitude": null,
"directions": null,
"description": null,
"addrZipCityCountry": null,
"lastUpdated": 1361754860000,
"cityId": {
"cityId": 1,
"city": "",
"lastUpdate": 1361754850000,
"countryCountryId": {
"countryId": 1,
"country": "Sweden",
"lastUpdate": 1361754837000
}
}
},
質問
- Address-object内のCity-objectのような独自のオブジェクトタイプの場合にJSON.stringifyを使用するときの正しい構文は何ですか?
- @JsonIgnoreProperties({""}) を使用しない場合、すべてのフィールドを json に追加する必要がありますか? 住所、都市、郵便番号が必要です。address は、サーバー側の文字列アドレス フィールドを持つ Address の型です。City は、都市名などの文字列フィールドを含む City の型です。