我無法獲得在以下情況下,一個變量的值:無法得到一個字符串中的變量值:angularjs
的onclick =「window.location.href =「#/應用/ tmnl/{{message.pid}}」「
它只是打印這 '#/應用/ tmnl/{{message.pid}}',而不是採取的message.pid
<div ng-repeat="message in userMessages track by $index">
<a class="item item-avatar" href="#">
<img src="https://graph.facebook.com/{{ message.a1id }}/picture?type=square">
<h2>{{ message.mdata.a1n }}</h2>
<p>Back off, man. I'm a scientist.</p>
<button class="button button-small button-positive" href="#/app/tmnl/{{ message.pid }}" onclick="window.location.href = '#/app/tmnl/{{ message.pid }}' ">
View
</button>
</a>
</div>
值任何人都可以告訴我我犯的錯誤嗎?
你已經把它作爲一個字符串: '#/ app/tmnl/{{message.pid}}''。做一些類似'{{#/ app/tmnl /'+ message.pid}}'而不是 – devqon
你可以添加你的控制器代碼嗎? –