为了账号安全,请及时绑定邮箱和手机立即绑定

使用 Thymeleaf 在脚本标签中发送安全参数

使用 Thymeleaf 在脚本标签中发送安全参数

墨色风雨 2021-11-11 14:03:29
我正在尝试在脚本标签中发送一个参数,如下所示:<script th:src="@{/js/myScript.js(arg0=${value})}"></script>其中 value 是以下结果:hasAuthority('USER')所以,我试过这个:<script th:src="@{/js/myScript.js(arg0=${hasAuthority('USER')})}"></script>但这不起作用:Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "hasAuthority('USER')" (template: "groups" - line 61, col 9) Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1004E: Method call: Method hasAuthority(java.lang.String) cannot be found on org.thymeleaf.spring4.expression.SPELContextMapWrapper type我之前使用过这个函数来显示 div 没有问题:<li sec:authorize="${hasAuthority('ADMIN')}">
查看完整描述

1 回答

?
牧羊人nacy

TA贡献1862条经验 获得超7个赞

尝试这个。

<script sec:authorize="${hasAuthority('USER')}" th:src="@{/js/myScript.js(arg0=ADD_VALUE_HERE)}"></script>

如果您有正确的权限,这只会加载这个特定的 js。对于您的情况,只需根据需要更改 js 参数的值。


查看完整回答
反对 回复 2021-11-11
  • 1 回答
  • 0 关注
  • 165 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信