在angular-google-map信息窗口中嵌套的ui-sref

时间:2016-07-03 14:53:15

标签: angularjs angular-ui-router angular-google-maps

我试图通过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参数始终为空。

我该如何解决这个问题?

0 个答案:

没有答案