提问者:小点点

在Spring Boot中,如何将控制器模型变量传递给Thymeleaf th: src?


我在classpath的一个目录下有一些静态图片文件,我希望通过变量传递其中一个图片文件的相对路径。在Thymeleaf上,目标是这个变量将被用作的src属性的路径

控制器:

@Controller
public class SomeController {

    @RequestMapping("/some")
    public String someRequest(Model model) {
        String imageFilepath = someObject.getImageFilepath();
        // e.g., if imageFilepath = "/img/myPic.jpg", there can be a file "/img/myPic.jpg" under classpath:static
        model.addAttribute("myPath", imageFilepath);
        return "myThymeleafTemplate";
    }
}

胸腺叶模板:

<img th:src="@{<I want to use my variable 'myPath' here instead of a hard-coded string '/img/myPic.jpg'>}">

Thymeleaf模板中th: src的尖括号(含)内的上下文正是我要放置imageFilepath变量字符串的位置。这样的目标可行吗?


共1个答案

匿名用户

你可以在没有pass变量的情况下使用它:

<img th:src="@{/img/myPic.jpg}">

如果你想传递变量,你可以使用这个:

 <img th:src="${myPath}">