当前位置: 首页 > news >正文

企业网站模板论坛wordpress 导出附件

企业网站模板论坛,wordpress 导出附件,asp网站免费模板下载,网站由哪些部分组成部分组成部分组成优质博文#xff1a;IT-BLOG-CN 一、模板引擎的思想 模板是为了将显示与数据分离#xff0c;模板技术多种多样#xff0c;但其本质都是将模板文件和数据通过模板引擎生成最终的HTML代码。 二、SpringBoot模板引擎 SpringBoot推荐的模板引擎是Thymeleaf语法简单#xff0…优质博文IT-BLOG-CN 一、模板引擎的思想 模板是为了将显示与数据分离模板技术多种多样但其本质都是将模板文件和数据通过模板引擎生成最终的HTML代码。 二、SpringBoot模板引擎 SpringBoot推荐的模板引擎是Thymeleaf语法简单功能强大。 【1】引入thymeleaf的 starter启动器。 dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-thymeleaf/artifactId /dependency!-- 默认版本号在parent的dependents中配置如果要替换其中的版本设置如下 -- propertiesthymeleaf.version3.0.2.RELEASE/thymeleaf.version!-- 布局功能的支持程序 thymeleaf3主程序适配layout2以上版本 --thymeleaf-layout-dialect.version2.1.1/thymeleaf-layout-dialect.version /properties【2】查看thymeleaf的默认配置进入ThymeleafAutoConfiguration的ThymeleafProperties配置文件中如下 ConfigurationProperties(prefix spring.thymeleaf ) public class ThymeleafProperties {private static final Charset DEFAULT_ENCODING Charset.forName(UTF-8);private static final MimeType DEFAULT_CONTENT_TYPE MimeType.valueOf(text/html);public static final String DEFAULT_PREFIX classpath:/templates/;public static final String DEFAULT_SUFFIX .html;private boolean checkTemplate true;private boolean checkTemplateLocation true;//只要我们吧HTML页面放在classpath:/templates/下就能够自动渲染private String prefix classpath:/templates/;private String suffix .html; }【3】测试创建controller如下同时在templates文件夹下创建suceess.html与返回值相同。启动后输入http://localhost:8080/success 便可跳转到success.html页面。 Controller public class success {RequestMapping(/success)public String success(){return success;} }三、thymeleaf 使用 【1】导入thymeleaf的名称空间就会具有thymeleaf的语法提示不导入也可以只是么有语法提示了。 html langen xmlns:thhttp://www.thymeleaf.org【2】写一个简单的demo上个手如下controller层给返回的页面添加数据如下 Controller public class success {RequestMapping(/success)public String success(MapString,String map){map.put(hello,你好);return success;} }【3】打开我们的静态页面success.html根据thymeleaf模板引擎语法获取hello的值如下 bodyh1成功/h1div th:text${hello}这是成功页面/div /body【4】需要注意的是当hello有值时显示 hello获取到的值如果单独只访问 success.html时只显示前端页面的内容 “这是成功页面” 能够非常友好的结合前后端进行编程。 四、thymeleaf语法规则 【1】th:text改变当前元素里面的文本内容。语法文档https://www.thymeleaf.org/doc/tutorials/3.0/thymeleafspring.pdf th:任意html属性可以替换原生的HTML的元素。 【2】表达式语法行里表达式[[xx]] —相当于 th:text [(xx)]—相当于th:utext ● Simple expressions:表达式语法○ Variable Expressions: ${...}获取变量值底层时OGNL;1、获取对象的属性、调用方法2、使用内置的基本对象#location...3、内置的一些工具对象#strings...○ Selection Variable Expressions: *{...}选择表达式与${}的功能一样有一个不同可以参考文档。○ Message Expressions: #{...}用来获取国际化信息○ Link URL Expressions: {...}用来定义URL连接○ Fragment Expressions: ~{...}片段引入表达式 ● Literals字面量○ Text literals: one text , Another one! ,…○ Number literals: 0 , 34 , 3.0 , 12.3 ,…○ Boolean literals: true , false○ Null literal: null○ Literal tokens: one , sometext , main ,… ● Text operations:文本操作○ String concatenation: ○ Literal substitutions: |The name is ${name}| ● Arithmetic operations:数学运算○ Binary operators: , - , * , / , %○ Minus sign (unary operator): - ● Boolean operations:布尔运算○ Binary operators: and , or○ Boolean negation (unary operator): ! , not ● Comparisons and equality:比较运算○ Comparators: , , , ( gt , lt , ge , le )○ Equality operators: , ! ( eq , ne ) ● Conditional operators:条件运算○ If-then: (if) ? (then)○ If-then-else: (if) ? (then) : (else)○ Default: (value) ?: (defaultvalue)○ Special tokens:○ Page 17 of 106 ● No-Operation: _特殊操作【3】公共页面抽取 !--抽取公共片段-- div th:fragmentcopy2011 The Good Thymes Virtual Grocery /div!--引入公共片段: ~{templatename::fragmentname} 片段 ~{templatename::selector} 选择器-- div th:insert~{footer :: copy}/div -- or -- div th:insertfooter :: copy/div三种引入功能片段的区别 ▶ th:insert将公共片段整个插入到声明引入的元素中。 ▶ th:replace将声明引入的元素替换成公共片段。 ▶ th:include将被引入的片段的内容包含进这个标签中。 footer th:fragmentcopy2011 The Good Thymes Virtual Gro /footer!--引入方式-- div th:insertfooter :: copy/di div th:replacefooter :: copy/div div th:includefooter :: copy/div!--效果-- divfooter2011 The Good Thymes Virtual Grocery/footer /divfooter2011 The Good Thymes Virtual Grocery /footerdiv2011 The Good Thymes Virtual Grocery /div【4】日期格式化通过内置对象dates进行格式化。 td th:text${#dates.format(emp.birth,yyyy-MM-dd)}/td【5】通过 PUT请求提交数据  ● SpringMVC 中配置 HiddenHttpMethodFilter(SpringBoot自动配置好。  ● 页面创建一个 post表单。  ● 创建一个 input项name“_method”值就是我们指定的方式。 private String methodParam _method; protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {HttpServletRequest requestToUse request;if(POST.equals(request.getMethod()) request.getAttribute(javax.servlet.error.exception) null) {//重点获取_method传过来的值String paramValue request.getParameter(this.methodParam);if(StringUtils.hasLength(paramValue)) {String method paramValue.toUpperCase(Locale.ENGLISH);if(ALLOWED_METHODS.contains(method)) {requestToUse new HiddenHttpMethodFilter.HttpMethodRequestWrapper(request, method);}}}filterChain.doFilter((ServletRequest)requestToUse, response); }页面实际操作 input typehidden name_method valueput th:if${emp}!null
http://www.pierceye.com/news/38950/

相关文章:

  • 学建设网站去哪里学怎么快速推广自己的产品
  • 安徽建站费用phpstudy 安装wordpress
  • 深圳做网站有哪些做网站就上凡科建设
  • 外贸推广网站建设个人网站做导航网站
  • 网站建设结构四川建设行业网站有哪些
  • 合肥建设网站哪家好东莞公司网站做优化
  • 家用电脑如何做网站服务器建立网站流程图
  • php网站作业模版网站建设v杏信zhousi69
  • 网站备案需要年检吗网站备案名称更换
  • 网站主页设计布局图企业局域网的规划与设计
  • 培训机构网站如何建设网站开发的数据库设计实体是什么
  • wordpress建站属于前端百度品牌广告
  • 免费搭建自助网站如何做电商网站
  • 哈密市建设局网站设计公司口号
  • 手机网站欢迎页面设计做mla网站
  • django做的电子商务网站阿里云有主体新增网站
  • 山西响应式网站平台非标自动化外包平台
  • phpcms 网站模板房地产行业网站
  • wordpress 获取父页面seo相关ppt
  • 收录文案网站网站难做吗
  • 广西建设职业技术学院图书馆网站传奇做网站
  • 购物展示网站开发的背景品牌策划公司应具备的能力
  • 做印刷厂网站网站建设的用户体验
  • 培训网站建设方案模板下载wordpress文章手机平铺
  • 百度北京公司地址全部seo管理工具
  • 山东省建设监理协会官方网站不收费推广网站有哪些
  • 关键词排名优化网站建设公司信融营销型网站建设
  • 东莞网站建设音乐盒昆明cms模板建站
  • 做文化建设的网站Wordpress 点击跟踪
  • 欢迎回来请牢记网站域名物联网是什么意思