struts2 jsp页面怎么实现字符串拼接
<s:ahref="%{getText('ncbiUrl')+${gene.geneId}}"title="%{getText('NcbiTitlePrompt')}">...
<s:a href="%{getText('ncbiUrl')+${gene.geneId}}" title="%{getText('NcbiTitlePrompt')}">${gene.geneId}</s:a>这样出错
ncbiUrl=http\://www.ncbi.nlm.nih.gov/sites/entrez?db\=nuccore&cmd\=search&term\=Homo+sapiens+
因为gene.geneId的值需要根据计算结果 每次都不一样 比如gene.geneId=832230
我想拼接出 http\://www.ncbi.nlm.nih.gov/sites/entrez?db\=nuccore&cmd\=search&term\=Homo+sapiens+832230的url
应该怎么写? 展开
ncbiUrl=http\://www.ncbi.nlm.nih.gov/sites/entrez?db\=nuccore&cmd\=search&term\=Homo+sapiens+
因为gene.geneId的值需要根据计算结果 每次都不一样 比如gene.geneId=832230
我想拼接出 http\://www.ncbi.nlm.nih.gov/sites/entrez?db\=nuccore&cmd\=search&term\=Homo+sapiens+832230的url
应该怎么写? 展开
展开全部
额,当然不行了,你那个“+”号,系统默认是运算符来的,不是连接。你应该直接在JSP中把那个值获取出来就行了。
根据你“${gene.geneId}”,最容易的办法就是:你可以先把这个值存如requestAttribute中,然后再和你的连接地址拼起来
<s:set name="gid">${gene.geneId}</set> <!--把值存入attribute中-->
<%
String gid = (String)request.getAttribute("gid"); //这样你就能获取出gene.geneId的字符串值了
ncbiUrl= ncbiUrl+gid; //这样就把两个字符串连接在一起了 就是你想要拼接成的效果了
%>
<!--最后在a标签的设置应该不用我多说了吧-->
<a href="<%=ncbiUrl %>" title="<%=ncbiUrl %>""></a>
根据你“${gene.geneId}”,最容易的办法就是:你可以先把这个值存如requestAttribute中,然后再和你的连接地址拼起来
<s:set name="gid">${gene.geneId}</set> <!--把值存入attribute中-->
<%
String gid = (String)request.getAttribute("gid"); //这样你就能获取出gene.geneId的字符串值了
ncbiUrl= ncbiUrl+gid; //这样就把两个字符串连接在一起了 就是你想要拼接成的效果了
%>
<!--最后在a标签的设置应该不用我多说了吧-->
<a href="<%=ncbiUrl %>" title="<%=ncbiUrl %>""></a>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询