を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
コントローラコードを追加できますか? –