如果后台用接收接收前台传的数据时,因为不确定具体是哪一种类型而报错,可以使用  instanceOf 

if (dataMap.get("salePrice") instanceof Integer) {

  // 对数据进行处理

}

相关文章: