我在使用model.Attribute()时,用toString方法得到的string作为其name属性值时,在前端无法获取到对象,而用“”定义一个字符串就可以,这是什么原因?
代码段:
for(Type type : types)
{
model.addAttribute(type.toString().toLowerCase(),filterByType(ingredients,type));
}
我在使用model.Attribute()时,用toString方法得到的string作为其name属性值时,在前端无法获取到对象,而用“”定义一个字符串就可以,这是什么原因?
代码段:
for(Type type : types)
{
model.addAttribute(type.toString().toLowerCase(),filterByType(ingredients,type));
}