MVC遍歷map集合

DuanYang5發表於2020-10-28

MVC遍歷map集合

/**
     * 編輯排序
     * @param ids
     * @return Integer
     */
    public Integer 。。。(@Param("ids") Map<String,Integer> ids) {
        return this.update(new StringBuffer(MAPPER_NAMESPACE).append("。。。").toString(), ids);
    }
<update id="。。。" parameterType="Map">
    <foreach item="value" index="key" collection="ids.entrySet()" separator=";" >
        update ta_class SET
        <if test="value!=null">,sorted= ${value}  </if>
        WHERE id = #{key}
    </foreach>
</update>

相關文章