gpt4 book ai didi

javascript - 将服务器中的值分配给 html 并保存

转载 作者:行者123 更新时间:2023-12-02 16:01:01 26 4
gpt4 key购买 nike

我使用 Spring 架。

我想显示一个对象并保存它。

@RequestMapping(value = "/lodgers", method = RequestMethod.POST)
public LodgerInformation createLodger(@RequestBody @Valid final LodgerInformation lodgerDto) {
return lodgerService.save(lodgerDto);
}

public class LodgerInformation {
private long lodgerId;
private String firstName;
private String lastName;
private List<IdentityCardDto> identityCardDtoList;
...
}



public class IdentityCardDto {
private long identityCardId;
private IdentityCardTypeDto identityCardTypeDto;
private String value;
...
}

public class IdentityCardTypeDto {
private long identityCardTypeId;
private String identityCardType;
private Date expiration;
private boolean hasExpirationDate=false;
...
}

在 html 方面,我需要使用什么结构来表示名称?是否有一些库可以促进为 html 组件赋值的过程以及相反的过程

得到答案:

"{"timestamp":1436292452811,"status":400,"error":"错误请求","exception":"org.springframework.http.converter.HttpMessageNotReadableException","message":"无法读取文档:无法识别的标记“firstName”:在 [来源:java.io.PushbackInputStream@3f7cf4ca;处期待“null”、“true”、“false”或 NaN\n;行:1,列:11];嵌套异常是 com.fasterxml.jackson.core.JsonParseException:无法识别的标记“firstName”:在 [来源:java.io.PushbackInputStream@3f7cf4ca;处期待“null”、“true”、“false”或 NaN\n;行:1,列:11]","path":"/lodgers"}"

最佳答案

此处需要发送的输入应采用以下格式

{
lodgerId : 1,
identityCardDtoList: [{
identityCardId: 11,
identityCardTypeDto:{
identityCardTypeId: 111,
identityCardType: "Node 1.1.1",
expiration: 12/12/2015,
hasExpirationDate: true
}
},{
identityCardId: 12,
identityCardTypeDto:{
identityCardTypeId: 112,
identityCardType: "Node 1.1.2",
expiration: 12/12/2015,
hasExpirationDate: true
}
}]
}

请告诉我这是否是您正在寻找的内容

关于javascript - 将服务器中的值分配给 html 并保存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31208429/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com