thymeleaf
pink_soda
不知道还能再当多久的程序媛~
展开
-
点击按钮弹出模态窗,并向模态窗传值
环境:springboot2.2.5thymeleaf 3.0.11点击button按钮,弹出模态窗,并传值<button class="btn btn-sm btn-danger"data-toggle="modal" data-target="#myModal"th:onclick="'Valuess(' + ${leimu.leimuId} + ');'">删除&...原创 2020-04-25 11:35:08 · 2161 阅读 · 0 评论 -
thymeleaf 使用图片url或者上传本地图片
配置文件:# 声明图片的绝对路径和相对路径file.upload.path=F://images/file.upload.path.relative=/images/**配置类:import org.springframework.beans.factory.annotation.Value;import org.springframework.context.annotation....原创 2020-03-15 20:33:21 · 6585 阅读 · 0 评论 -
thymeleaf实现表格中序号的自增
在后端数据库在前端用表格展示时,为了更清楚地知道当前有多少条数据,需要在每一行前方都加上自增的序号。th:each循环迭代语法:th:each="obj,itemStat:${objList}itemStat称作状态变量,属性有:index:当前迭代对象的index(从0开始计算)count: 当前迭代对象的index(从1开始计算)size:被迭代对象的大小current:当前迭...原创 2020-03-15 15:25:11 · 3123 阅读 · 2 评论 -
mysql后台datetime数据,前端输出只有分钟不对--解决
对应实体类:package com.ckh.springboot04.entities;import lombok.Data;import org.springframework.data.annotation.CreatedDate;import org.springframework.data.annotation.LastModifiedDate;import org.sprin...原创 2020-03-14 19:08:15 · 373 阅读 · 0 评论