Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想向 jsp taglib 中定义的函数发送一个字符串。具体来说,我想发送一个我在页面中得到的参数。即这里的第二个参数应该是一个字符串。如果我使用 ${param.username} 它会给出错误,可能是因为 ${param.username} 是一个对象而不是字符串 ${insert:insert(5,)}
不能将 EL 表达式 ( ${...}) 嵌入到另一个 EL 表达式 ( ${...}) 中。您只需
${...}
${insert:insert(5, param.username)}