我试图通过ui-sref
指令传递对象的id无效。
我的标记:
<div class="row" ui-gmap-google-map
center="map.center"
zoom="map.zoom"
options="map.options"
control="map.control"
events="map.events">
<div ui-gmap-markers models="events" coords="'location'" idkey="'_id'">
<div ui-gmap-windows show="showInfo" ng-cloak>
<div class="text-center" style="position: relative" ui-sref="event.view({id: this._id})">
<h5 ng-non-bindable>{{::name}}</h5>
<div ng-non-bindable>
<img style="width: 125px" src="{{::pictures[0]}}" alt="Image not available">
</div>
</div>
</div>
</div>
一切都通过数据绑定工作。单击窗口区域时路径会更改,但id
中的$stateParams
参数始终为空。
我该如何解决这个问题?