AngularJS html页面如何设置href来使用上下文路径?

时间:2014-04-19 23:46:37

标签: javascript html angularjs

我正在考虑在html文件中编写类似的内容:

<a id="homeId" class="navbar-brand" href="javascript:document.write('${pageContext.request.contextPath}')">Root Page</a>

在浏览器中,我看到的链接是未评估的实际href字符串,即:

javascript:document.write('${pageContext.request.contextPath}')

1 个答案:

答案 0 :(得分:1)

您需要在变量周围使用双花括号:{{}}

我不确定您要尝试做什么,但这是一个快速示例,显示正在评估的变量:

http://plnkr.co/edit/cUckEApeSLI7t4jGJcw5

请注意,它只是将值更改为&#34; test&#34;。