百里香 th:inline="javascript" 问题
Thymeleaf th:inline="javascript" issue
我不知道如何解决以下问题:我想让我的模型根据一些模型逻辑动态生成真实的javascript。
最后一段 javascript 代码应该添加到我的 html 页面的 $(document).ready { } 部分。
问题是:如果我使用 inline="javascript",代码会被引用,因为我的 getter 是一个字符串(这就是 Thymeleaf 文档中提到的方式,但我不是需要 ;-)
如果我使用 inline="text" in 没有被引用但是所有的引号都被转义了 ;-) - 也不错但是不可用 8)
如果我尝试 inline="none" 没有任何反应。
示例如下
我的模型 getter 创建了以下 Javascript 代码。
PageHelper class
public String documentReady() {
// do some database operations to get the numbers 8,5,3,2
return "PhotoGallery.load(8,5,3,2).loadTheme(name='basic')";
}
所以如果我现在尝试 inline="javascript"
<script th:inline="javascript">
/*<![CDATA[*/
jQuery().ready(function(){
/*[[${pageHelper.documentReady}]]*/
});
/*]]>*/
</script>
它将被渲染到
<script>
/*<![CDATA[*/
jQuery().ready(function(){
'PhotoGallery.load(8,5,3,2).loadTheme(name=\'basic\')'
});
/*]]>*/
</script>
这没有帮助,因为它是一个字符串文字,仅此而已(这就是 Thymeleaf 处理它的方式)。
所以如果我尝试 inline="text" 而不是
<script>
/*<![CDATA[*/
jQuery().ready(function(){
PhotoGallery.load(8,5,3,2).loadTheme(name='basic')
});
/*]]>*/
</script>
引号转义。
inline="none"我不是很明白,因为它什么都不做
<script>
/*<![CDATA[*/
jQuery().ready(function(){
[[${pageHelper.documentReady}]]
});
/*]]>*/
</script>
老实说,我不知道如何解决这个问题,希望那里的任何人都知道如何处理这个问题。
非常感谢
干杯
约翰
我会改变方法。
Thymeleaf 允许您轻松地在模板中添加模型变量,以便在 Javascript 中使用。在我的实现中,我通常将这些变量放在结束 header 标记之前的某处;以确保它们在 JS 加载后出现在页面上。
当然,我让模板决定究竟要加载什么。如果你正在展示一个画廊,那么就按照你想要的方式渲染它,并使用数据属性来定义与一些 JS 代码相关的画廊。然后给自己写一个很好的 jQuery plugin 来处理你的画廊。
一个比较基础的例子:
默认布局装饰器:layout/default.html
<!doctype html>
<html xmlns:layout="http://www.thymeleaf.org" xmlns:th="http://www.thymeleaf.org">
<head>
<title>My Example App</title>
<object th:remove="tag" th:include="fragments/scripts :: header" />
</head>
<body>
<div layout:fragment="content"></div>
<div th:remove="tag" th:replace="fragments/scripts :: footer"></div>
<div th:remove="tag" layout:fragment="footer-scripts"></div>
</body>
</html>
这里要注意的是包含通用页脚脚本,然后是 layout:fragment
div 定义。我们将使用此布局 div 来包含图库所需的 jQuery 插件。
包含通用脚本的文件:fragments/scripts.html
<div th:fragment="header" xmlns:th="http://www.thymeleaf.org">
<script type="text/javascript" th:inline="javascript">
/*<![CDATA[*/
var MY_APP = {
contextPath: /*[[@{/}]]*/,
defaultTheme: /*[[${theme == null} ? null : ${theme}]]*/,
gallery: {
theme: /*[[${gallery == null} ? null : ${gallery.theme}]]*/,
images: /*[[${gallery == null} ? null : ${gallery.images}]]*/,
names: /*[[${gallery == null} ? null : ${gallery.names}]]*/
}
};
/*]]>*/
</script>
</div>
<div th:fragment="footer" xmlns:th="http://www.thymeleaf.org">
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/my_app.js"></script>
</div>
在脚本文件中,有2个片段,是从装饰器中包含的。在 header 片段中,包含一个有用的上下文路径用于 JS 层,以及一个 defaultTheme
只是为了它的地狱。然后从我们的模型中定义并分配图库 object。页脚片段加载 jQuery 库和主站点 JS 文件,再次用于此示例。
包含 lazy-loaded 个图库的页面:products.html
<html layout:decorator="layout/default" xmlns:layout="http://www.thymeleaf.org/" xmlns:th="http://www.thymeleaf.org">
<head>
<title>Products Landing Page</title>
</head>
<body>
<div layout:fragment="content">
<h1>Products</h1>
<div data-gallery="lazyload"></div>
</div>
<div th:remove="tag" layout:fragment="footer-scripts">
<script type="text/javascript" src="/js/my_gallery.js"></script>
</div>
</body>
</html>
我们的产品页面上没有太多内容。使用默认的装饰器,这个页面覆盖了头部的页面标题。我们的内容片段包括 h1 标签中的标题和带有 data-gallery 属性的空 div。我们将在 jQuery 插件中使用此属性来初始化图库。
该值设置为延迟加载,因此我们的插件知道我们需要在某处设置的某个变量中找到图像 ID。如果我们的插件唯一支持的是延迟加载的图库,那么这很容易为空。
因此布局会加载一些默认脚本并巧妙地放置 layout:fragments
,您允许网站的某些部分加载独立于其余部分的库。
这是一个基本的 Spring 控制器示例,用于我们的应用程序:MyController.java
@Controller
public class MyController {
@RequestMapping("/products")
public String products(Model model) {
class Gallery {
public String theme;
public int[] images;
public String[] names;
public Gallery() {
this.theme = "basic";
this.images = new int[] {8,5,3,2};
this.names = new String[] {"Hey", "\"there's\"", "foo", "bar"};
}
}
model.addAttribute("gallery", new Gallery());
return "products";
}
}
Gallery class 被内嵌在 products 方法中,以简化我们的示例。这可以很容易地成为某种类型的服务或存储库,returns 标识符数组,或您需要的任何内容。
我们创建的 jQuery 插件可能看起来像这样:my_gallery.js
(function($) {
var MyGallery = function(element) {
this.$el = $(element);
this.type = this.$el.data('gallery');
if (this.type == 'lazyload') {
this.initLazyLoadedGallery();
}
};
MyGallery.prototype.initLazyLoadedGallery = function() {
// do some gallery loading magic here
// check the variables we loaded in our header
if (MY_APP.gallery.images.length) {
// we have images... sweet! let's fetch them and then do something cool.
PhotoGallery.load(MY_APP.gallery.images).loadTheme({
name: MY_APP.gallery.theme
});
// or if load() requires separate params
var imgs = MY_APP.gallery.images;
PhotoGallery.load(imgs[0],imgs[1],imgs[2],imgs[3]).loadTheme({
name: MY_APP.gallery.theme
});
}
};
// the plugin definition
$.fn.myGallery = function() {
return this.each(function() {
if (!$.data(this, 'myGallery')) {
$.data(this, 'myGallery', new MyGallery(this));
}
});
};
// initialize our gallery on all elements that have that data-gallery attribute
$('[data-gallery]').myGallery();
}(jQuery));
产品页面的最终呈现如下所示:
<!doctype html>
<html>
<head>
<title>Products Landing Page</title>
<script type="text/javascript">
/*<![CDATA[*/
var MY_APP = {
contextPath: '/',
defaultTheme: null,
gallery: {
theme: 'basic',
images: [8,5,3,2],
names: ['Hey','\"there\'s\"','foo','bar']
}
};
/*]]>*/
</script>
</head>
<body>
<div>
<h1>Products</h1>
<div data-gallery="lazyload"></div>
</div>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/my_app.js"></script>
<script type="text/javascript" src="/js/my_gallery.js"></script>
</body>
</html>
如您所见,Thymeleaf 在将您的模型转换为有效的 JS 方面做得非常好,并且实际上在需要的地方添加了引号并将它们转义。页面完成渲染后,文件末尾有 jQuery 插件,初始化图库所需的一切都应该加载并准备就绪。
这不是一个完美的例子,但我认为这是一个很好的 straight-forward 网络应用程序设计模式。
而不是 ${pageHelper.documentReady}
使用 ${pageHelper.documentReady}
我不知道如何解决以下问题:我想让我的模型根据一些模型逻辑动态生成真实的javascript。
最后一段 javascript 代码应该添加到我的 html 页面的 $(document).ready { } 部分。
问题是:如果我使用 inline="javascript",代码会被引用,因为我的 getter 是一个字符串(这就是 Thymeleaf 文档中提到的方式,但我不是需要 ;-)
如果我使用 inline="text" in 没有被引用但是所有的引号都被转义了 ;-) - 也不错但是不可用 8)
如果我尝试 inline="none" 没有任何反应。
示例如下
我的模型 getter 创建了以下 Javascript 代码。
PageHelper class
public String documentReady() {
// do some database operations to get the numbers 8,5,3,2
return "PhotoGallery.load(8,5,3,2).loadTheme(name='basic')";
}
所以如果我现在尝试 inline="javascript"
<script th:inline="javascript">
/*<![CDATA[*/
jQuery().ready(function(){
/*[[${pageHelper.documentReady}]]*/
});
/*]]>*/
</script>
它将被渲染到
<script>
/*<![CDATA[*/
jQuery().ready(function(){
'PhotoGallery.load(8,5,3,2).loadTheme(name=\'basic\')'
});
/*]]>*/
</script>
这没有帮助,因为它是一个字符串文字,仅此而已(这就是 Thymeleaf 处理它的方式)。
所以如果我尝试 inline="text" 而不是
<script>
/*<![CDATA[*/
jQuery().ready(function(){
PhotoGallery.load(8,5,3,2).loadTheme(name='basic')
});
/*]]>*/
</script>
引号转义。
inline="none"我不是很明白,因为它什么都不做
<script>
/*<![CDATA[*/
jQuery().ready(function(){
[[${pageHelper.documentReady}]]
});
/*]]>*/
</script>
老实说,我不知道如何解决这个问题,希望那里的任何人都知道如何处理这个问题。
非常感谢 干杯 约翰
我会改变方法。
Thymeleaf 允许您轻松地在模板中添加模型变量,以便在 Javascript 中使用。在我的实现中,我通常将这些变量放在结束 header 标记之前的某处;以确保它们在 JS 加载后出现在页面上。
当然,我让模板决定究竟要加载什么。如果你正在展示一个画廊,那么就按照你想要的方式渲染它,并使用数据属性来定义与一些 JS 代码相关的画廊。然后给自己写一个很好的 jQuery plugin 来处理你的画廊。
一个比较基础的例子:
默认布局装饰器:layout/default.html
<!doctype html>
<html xmlns:layout="http://www.thymeleaf.org" xmlns:th="http://www.thymeleaf.org">
<head>
<title>My Example App</title>
<object th:remove="tag" th:include="fragments/scripts :: header" />
</head>
<body>
<div layout:fragment="content"></div>
<div th:remove="tag" th:replace="fragments/scripts :: footer"></div>
<div th:remove="tag" layout:fragment="footer-scripts"></div>
</body>
</html>
这里要注意的是包含通用页脚脚本,然后是 layout:fragment
div 定义。我们将使用此布局 div 来包含图库所需的 jQuery 插件。
包含通用脚本的文件:fragments/scripts.html
<div th:fragment="header" xmlns:th="http://www.thymeleaf.org">
<script type="text/javascript" th:inline="javascript">
/*<![CDATA[*/
var MY_APP = {
contextPath: /*[[@{/}]]*/,
defaultTheme: /*[[${theme == null} ? null : ${theme}]]*/,
gallery: {
theme: /*[[${gallery == null} ? null : ${gallery.theme}]]*/,
images: /*[[${gallery == null} ? null : ${gallery.images}]]*/,
names: /*[[${gallery == null} ? null : ${gallery.names}]]*/
}
};
/*]]>*/
</script>
</div>
<div th:fragment="footer" xmlns:th="http://www.thymeleaf.org">
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/my_app.js"></script>
</div>
在脚本文件中,有2个片段,是从装饰器中包含的。在 header 片段中,包含一个有用的上下文路径用于 JS 层,以及一个 defaultTheme
只是为了它的地狱。然后从我们的模型中定义并分配图库 object。页脚片段加载 jQuery 库和主站点 JS 文件,再次用于此示例。
包含 lazy-loaded 个图库的页面:products.html
<html layout:decorator="layout/default" xmlns:layout="http://www.thymeleaf.org/" xmlns:th="http://www.thymeleaf.org">
<head>
<title>Products Landing Page</title>
</head>
<body>
<div layout:fragment="content">
<h1>Products</h1>
<div data-gallery="lazyload"></div>
</div>
<div th:remove="tag" layout:fragment="footer-scripts">
<script type="text/javascript" src="/js/my_gallery.js"></script>
</div>
</body>
</html>
我们的产品页面上没有太多内容。使用默认的装饰器,这个页面覆盖了头部的页面标题。我们的内容片段包括 h1 标签中的标题和带有 data-gallery 属性的空 div。我们将在 jQuery 插件中使用此属性来初始化图库。
该值设置为延迟加载,因此我们的插件知道我们需要在某处设置的某个变量中找到图像 ID。如果我们的插件唯一支持的是延迟加载的图库,那么这很容易为空。
因此布局会加载一些默认脚本并巧妙地放置 layout:fragments
,您允许网站的某些部分加载独立于其余部分的库。
这是一个基本的 Spring 控制器示例,用于我们的应用程序:MyController.java
@Controller
public class MyController {
@RequestMapping("/products")
public String products(Model model) {
class Gallery {
public String theme;
public int[] images;
public String[] names;
public Gallery() {
this.theme = "basic";
this.images = new int[] {8,5,3,2};
this.names = new String[] {"Hey", "\"there's\"", "foo", "bar"};
}
}
model.addAttribute("gallery", new Gallery());
return "products";
}
}
Gallery class 被内嵌在 products 方法中,以简化我们的示例。这可以很容易地成为某种类型的服务或存储库,returns 标识符数组,或您需要的任何内容。
我们创建的 jQuery 插件可能看起来像这样:my_gallery.js
(function($) {
var MyGallery = function(element) {
this.$el = $(element);
this.type = this.$el.data('gallery');
if (this.type == 'lazyload') {
this.initLazyLoadedGallery();
}
};
MyGallery.prototype.initLazyLoadedGallery = function() {
// do some gallery loading magic here
// check the variables we loaded in our header
if (MY_APP.gallery.images.length) {
// we have images... sweet! let's fetch them and then do something cool.
PhotoGallery.load(MY_APP.gallery.images).loadTheme({
name: MY_APP.gallery.theme
});
// or if load() requires separate params
var imgs = MY_APP.gallery.images;
PhotoGallery.load(imgs[0],imgs[1],imgs[2],imgs[3]).loadTheme({
name: MY_APP.gallery.theme
});
}
};
// the plugin definition
$.fn.myGallery = function() {
return this.each(function() {
if (!$.data(this, 'myGallery')) {
$.data(this, 'myGallery', new MyGallery(this));
}
});
};
// initialize our gallery on all elements that have that data-gallery attribute
$('[data-gallery]').myGallery();
}(jQuery));
产品页面的最终呈现如下所示:
<!doctype html>
<html>
<head>
<title>Products Landing Page</title>
<script type="text/javascript">
/*<![CDATA[*/
var MY_APP = {
contextPath: '/',
defaultTheme: null,
gallery: {
theme: 'basic',
images: [8,5,3,2],
names: ['Hey','\"there\'s\"','foo','bar']
}
};
/*]]>*/
</script>
</head>
<body>
<div>
<h1>Products</h1>
<div data-gallery="lazyload"></div>
</div>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/my_app.js"></script>
<script type="text/javascript" src="/js/my_gallery.js"></script>
</body>
</html>
如您所见,Thymeleaf 在将您的模型转换为有效的 JS 方面做得非常好,并且实际上在需要的地方添加了引号并将它们转义。页面完成渲染后,文件末尾有 jQuery 插件,初始化图库所需的一切都应该加载并准备就绪。
这不是一个完美的例子,但我认为这是一个很好的 straight-forward 网络应用程序设计模式。
而不是 ${pageHelper.documentReady}
使用 ${pageHelper.documentReady}