Getting a URL Attribute Value in Thymeleaf – 在Thymeleaf中获得一个URL属性值

最后修改: 2022年 9月 30日

中文/混合/英文(键盘快捷键:t)

1. Overview

1.概述

In this short tutorial, we’ll shed light on how to get URL attributes in the Thymeleaf views.

在这个简短的教程中,我们将阐明如何在Thymeleaf视图中获得URL属性

2. How to Get URL Parameter Attributes

2.如何获取URL参数属性

Accessing URL attributes, or what we call request parameters, can be easily done in Thymleaf views using one of two special Thymleaf objects. The first way is to use the param object, and the second way is to use the #request object.

在Thymleaf视图中,使用两种特殊的Thymleaf对象之一,可以很容易地访问URL属性,或者我们称之为请求参数。第一个方法是使用param对象,第二个方法是使用#request对象。

For demonstration purposes, let’s consider a URL that holds one parameter, query:

为了演示,让我们考虑一个拥有一个参数的URL,query

https://baeldung.com/search?query=Baeldung

2.1. Using the param Object

2.1.使用param对象

First, let’s see how to use the param object to access the URL attribute “query”:

首先,让我们看看如何使用param对象来访问URL属性 “query”。

<div th:if="${param.query != null}">
    <p th:text="${param.query }"></p>
</div>

In the above example, if the parameter “query” isn’t null, the value of “query” will be shown. Also, we should note that URL attributes can be multivalued. Let’s see an example URL with a multivalued attribute:

在上面的例子中,如果参数 “query “不是空的,”query “的值将被显示。另外,我们应该注意,URL属性可以是多值的。让我们看看一个带有多值属性的URL例子。

https://baeldung.com/search?query=Bealdung&query=Thymleaf

In this case, we can access the values separately using brackets syntax:

在这种情况下,我们可以使用括号的语法分别访问这些值。

<div th:if="${param.query != null}">
    <p th:text="${param.query[0] + ' ' + param.query[1]}" th:unless="${param.query == null}"></p>
</div>

2.2. Using the request Object

2.2.使用request对象

Next, let’s see the second way to access URL attributes. We can use the special #request object that gives you direct access to the javax.servlet.http.HttpServletRequest object, which breaks a request down into parsed elements such as query attributes and headers.

接下来,让我们看看访问URL属性的第二种方式。我们可以使用特殊的#request对象,它可以让你直接访问javax.servlet.http.HttpServletRequest对象,它把一个请求分解成查询属性和头文件等解析元素。

Let’s see how to use the #request object in a Thymleaf view:

让我们看看如何在Thymleaf视图中使用#request对象。

<div th:if="${#request.getParameter('query') != null}">
    <p th:text="${#request.getParameter('query')}" th:unless="${#request.getParameter('query') == null}"></p>
</div>

In the above example, we used the special function getParameter(‘query’) offered by the #request object. This method returns the value of a request parameter as a String, or null if the parameter does not exist.

在上面的例子中,我们使用了#request对象所提供的特殊函数getParameter(‘query’)。该方法以String的形式返回请求参数的值,如果该参数不存在,则返回null

3. Conclusion

3.总结

In this quick article, we explained how to get URL attributes in the Thymeleaf views using param and #request objects. As always, the code snippets are available over on GitHub.

在这篇快速文章中,我们解释了如何使用param#request对象获得Thymeleaf视图中的URL属性与以往一样,代码片段可在GitHub上找到。