Angular 1.5 Component:传递一个函数

问题描述 投票:11回答:3

是否可以将函数传递给组件并在传递参数的组件内调用此函数?

例:

帖子列表

<post-list posts="blog.posts"
           loading="blog.loadingPosts"
           get-post-url="blog.getPostUrl" 
           is-user-authenticate="blog.user">
</post-list>

getPostUrl是一个函数(在容器控制器内):

const getPostUrl = (postId) => {
    const protocol = $location.protocol();
    const host = $location.host();
    const port = $location.port();

    return protocol + "://" + host + "" + (port !== 80 ? ":" + port : "") + "/blog/post/" + postId;
};

帖子列表:组件

const PostList = {
  "bindings": {
    "posts": "<",
    "loading": "<",
    "getPostUrl": "&", //Function getPostUrl
    "isUserAuthenticate": "<"
  },
  "template": `<div>
                <div class="col-md-9 text-center" data-ng-if="$ctrl.loading">
                  <i class="fa fa-spinner fa-spin fa-2x"></i>
                </div>

                <div class="col-md-9 posts" data-ng-if="!$ctrl.loading">
                  <div data-ng-repeat="post in $ctrl.posts">
                    <post creation-date="{{post.creationDate}}"
                          content="{{post.content}}"
                          post-url="{{$ctrl.getPostUrl(post.creationDate)}}"
                          is-user-authenticate="$ctrl.user">
                    </post>
                  </div>
                </div>
              </div>`,
   "transclude": false
};

 angular
  .module("blog")
  .component("postList", PostList);

在这一行:

post-url="{{$ctrl.getPostUrl(post.creationDate)}}"我想调用传递参数的函数,这个函数返回一个字符串。

在post组件(不是PostList)中,postUrl是一个字符串属性@

但是......不工作!

angular.js:13550错误:[$ interpolate:interr]无法插值:{{$ ctrl.getPostUrl(post.creationDate)}} TypeError:无法使用'in'运算符在1459329888892中搜索'blog'Error Link

有可能吗?如何?

非常感谢!

javascript angularjs components
3个回答
6
投票

如果要从组件内部调用该函数并让它返回一个值,那么您需要双向绑定:

"bindings": {
  "posts": "<",
  "loading": "<",
  "getPostUrl": "=", // <-- two-way binding
  "isUserAuthenticate": "<"
},

但是,这可能不是一个好主意。考虑将数据传递给组件,而不是从外部发出组件请求数据。这将使更好的隔离组件。


20
投票

您可以将函数传递给组件,但必须将函数参数定义为对象,并将正确的参数名称作为其键。例:

<post-list posts="blog.posts"
           loading="blog.loadingPosts"
           get-post-url="blog.getPostUrl(postId)" 
           is-user-authenticate="blog.user">
</post-list>

const PostList = {
 "bindings": {
  "posts": "<",
  "loading": "<",
  "getPostUrl": "&", //Function getPostUrl
  "isUserAuthenticate": "<"
 },
 "template": `<post creation-date="{{post.creationDate}}"
                      content="{{post.content}}"
                      post-url="{{$ctrl.getPostUrl({postId:post.creationDate})}}">
                </post>

0
投票

要将值返回到绑定函数,必须将其作为对象文字传递。 self.selected({id:'42',名字:'道格拉斯',姓:'亚当斯'});

angular.module('webapp').component('myComponent', {
    templateUrl: 'myComponent.html',

    bindings: {
        selected: '&'
    },
    controller: function () {
        var self = this;

        self.someEvent= function(){
            self.selected({id: '42', firstname: 'Douglas', lastname: 'Adams'});
        };
    }
});

之后,您可以通过它的属性访问对象文字值。 id,firstname,lastname。 您还可以将其他参数传递给该函数。 (MYVARIABLE)

<div>
    <span ng-init="myVariable='Universe'">
    <my-component selected="myFunction(id, firstname, lastname, myVariable)"></my-component>
</div>


$scope.myFunction = function(id, firstname, lastname, myVariable){
    console.log(id, firstname, lastname, myVariable);    
}

0
投票

根据Todd Motto的标准,不建议使用'='而是尝试使用'&'将方法从父组件传递给子组件,并且调用子组件中的方法将在父组件中触发。我们来举个例子吧。

父组件的模板(HTML):

<child take-me-to-school="$ctrl.searchBikeKeyAndStart>

子组件的控制器:

public someFunction = () => {
  this.takeMeToSchool();
}

从子组件的控制器调用该函数后,将触发父项中映射的函数。

父组件的控制器(HTML):

public searchBikeKeyAndStart = () => {
  .....
}

当您想要将参数传递给同一个函数时

父组件的模板(HTML):

<child take-me-to-school="$ctrl.searchBikeKeyAndStart(**key**)>

子组件的控制器:

public someFunction = () => {
  this.takeMeToSchool({key: parameterValue});
}

从子组件的控制器调用该函数后,将触发父项中映射的函数。

父组件的控制器(HTML):

public searchBikeKeyAndStart = (**key**) => {
  console.log(**key**) //will print the param passed
}
© www.soinside.com 2019 - 2024. All rights reserved.