如何将列表从Angular保存到Spring Boot

时间:2019-05-22 01:57:55

标签: angular spring-boot

我的问题是如何从Angular保存到Spring Boot的列表,看起来像是对输入type = text而不是select或checkbox的“响应”

我只找到一个解决方案是FormArray,但是我需要为列表中的每个解决方案设置一个名称?我当然不想要代码,但是我只想要可以帮助您的关键字。

  {
    "idQnA": 0,
    "question": "question1",
    "responses": [
        "responeses1",
        "responese2"
    ]
}

@Column(name = "question", nullable = false)
private String question;

@Column(name = "responses", nullable = false)
@ElementCollection(targetClass=String.class)
private List<String> responses;

0 个答案:

没有答案