这是我在控制台中收到的完整错误:
"无法读取文档:无法反序列化int类型的值 字符串" $ {product.id}":不是有效的整数值↵[来源: java.io.PushbackInputStream@40d1a098; line:1,column:14](通过 参考链:haughton.dvdstore.model.AddToCartPojo [" productId"]); 嵌套异常是 com.fasterxml.jackson.databind.exc.InvalidFormatException:不能 从String" $ {product.id}"反序列化int类型的值:不是有效的 整数值↵[来源:java.io.PushbackInputStream@40d1a098;线: 1,专栏:14](通过参考链: haughton.dvdstore.model.AddToCartPojo ["的productId"])"
我的HTML
<form method="post">
<p>Enter quantity you would like to purchase :
<input type="number" id="quantity" name="quantity" step="any" min="1" max="${product.quantityInStock}" value="1"></input>
</p>
<input type="submit" class="btn btn-primary" id="addToCart" name="button" value="Add to cart"/>
<input type="hidden" id="productId" value='${product.id}'/>
</form>
App.js
$("#addToCart").click(function(event) {
var data = {}
data["productId"] = $("#productId").val();
data["quantity"] = $("#quantity").val();
$.ajax({
type: "POST",
contentType: "application/json",
url: "http://localhost:8080/addToCart",
data: JSON.stringify(data),
dataType: 'json',
timeout: 600000,
success: function (data) {
console.log(data);
//...
},
error: function (e) {
//...
}
});
event.preventDefault();
});
控制器
@Controller
@Scope("session")
public class CartController {
@Autowired
private Cart cart;
@Autowired
ProductService productService;
@RequestMapping(value="/cart", method= RequestMethod.GET)
public String searchResults(Model model) {
model.addAttribute("cartLines",cart.getLines());
model.addAttribute("cartTotalPrice",cart.getTotalPrice());
return "cart";
}
@ResponseBody
@RequestMapping(value="/addToCart", method= RequestMethod.POST)
public String searchResults(@RequestBody AddToCartPojo addToCartPojo) {
Product product = productService.findById(((long) addToCartPojo.getProductId()));
if(product == null){
//if the productid supplied doesnt belong to a product in our database
return "failure";
}
FlashMessage result = cart.add(product,addToCartPojo.getQuantity());
return result.getStatus().toString();
}
AddToCartPojo
//pojo for sending via ajax
public class AddToCartPojo {
private int productId;
private int quantity;
public int getProductId() {
return productId;
}
public void setProductId(int productId) {
this.productId = productId;
}
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
}
答案 0 :(得分:1)
我建议更改AddToCartPojo
,以便productId
是String
而不是int
:
所以改变这个:
private int productId;
对此:
private String productId;
你也需要改变你的吸气者。