---恢復內容開始---
我在添加單條數據的時候,參數是一個map,沒有使用循環,直接map.字段,即使這個字段map中並不存在,也不會出錯
但是是一個List<Map>這種,保存就需要循環遍歷這個list,然后每個元素都是個map,這時候如果map取一個沒有的字段就會報錯,就是這個錯誤:
1 org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter '__frch_map_0' not found. Available parameters are [list]
---恢復內容結束---