与聚合物一起使用时将参数传递给 ng-click

passsing argument to ng-click when using with polymer

我将 Polymer 与 angularjs 一起使用,我试图将参数传递给使用 ng-click 调用的函数,在聚合物的 dom-repeat 中,但 ng-click 不接受该参数. 代码示例:

<!-- index.html -->
    <paper-tabs selected="{{selected}}" attr-for-selected="name" bottom-item>
    <template is="dom-repeat" items="{{items}}" ng-repeat= "iteme in items">
    <paper-tab name="{{item.title}}" ng-click="navigate(iteme.title)" >{{item.title}}</paper-tab>
    </template>
    </paper-tabs>
    </app-toolbar>

<!-- Polymer Array -->
items: {
      type: Array,
      value: function() {
        return [{link : 'contact',title: 'Contact',icon: 'dashboard'},
         {link : 'profile',title: 'Update Profile',icon: 'group'},
         {link : 'pinReset',title: 'Reset Pin',icon: 'message'},
         {link : 'settings',title: 'Settings',icon: 'settings'},
         {link : 'about',title: 'About',icon: 'message'},
         {link : 'logout',title: 'Logout',icon: 'logout'}]
      }
},

<!-- Angular Js controller -->

function MainController($location, $scope) {
var vm = this;
$scope.navigate=function(page) {
console.log(page);//this log returns undefined
 $location.path('/'+page);
 };

我如何传递参数以在聚合物循环内导航函数

会不会有错别字

<paper-tab name="{{item.title}}" ng-click="navigate(iteme.title)" >{{item.title}}</paper-tab>

我看到你在使用

item.title

iteme.title