gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 10:43:39 24 4
gpt4 key购买 nike

我正在尝试在脚本标记中发送一个参数,如下所示:

<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')}">

最佳答案

试试这个。

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

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

关于java - 使用 Thymeleaf 在脚本标签中发送安全参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52750469/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com