自定义环回模型

Customize loopback model

如何在环回中自定义 PersistedModel?假设我有两个模型 Post 和 Comment。 Post 有很多评论,但最多可以有 3 条评论。我如何在不使用钩子的情况下 实现 ?我还需要在 transaction 中进行。

我来自 java,我会这样做:

class Post  {

   void addComment(Comment c) {

         if(this.comments.size() < 3)
              this.comments.add(c) 
         else 
           throw new DomainException("Comment count exceeded") 

   }

 }

那我会写一个服务...

  class PostService {

      @Transactional
      public void addCommentToPost(postId, Comment comment) {
             post = this.postRepository.findById(postId); 
             post.addComment(comment)
             this.postRepository.save(post); 

      }

  }

我知道我可以这样写:

module.exports = function(app) {

      app.datasources.myds.transaction(async (models) => {

         post = await models.Post.findById(postId) 
         post.comments.create(commentData); ???? how do i restrict comments array size ? 




      })


}

我希望能够像这样使用它:

// create post 

POST /post --> HTTP 201

// add comments 

POST /post/id/comments --> HTTP 201
POST /post/id/comments --> HTTP 201
POST /post/id/comments --> HTTP 201

// should fail 

POST /post/id/comments --> HTTP 4XX ERROR

你在这里问的实际上是使用操作挂钩的好用例之一,特别是 beforesave()。在这里查看更多相关信息 https://loopback.io/doc/en/lb3/Operation-hooks.html#before-save

但是,我不太确定交易部分。

为此,我建议使用 remote method, it gives you complete freedom to use the transaction APIs 环回。 这里要考虑的一件事是,您必须确保所有注释仅通过您的方法创建,而不是通过默认的环回方法创建。

然后你可以做这样的事情

// in post-comment.js model file    

module.exports = function(Postcomment){

    Postcomment.addComments = function(data, callback) {
        // assuming data is an object which gives you the postId and commentsArray
        const { comments, postId } = data;

        Postcomment.count({ where: { postId } }, (err1, count) => {
          if (count + commentsArray.length <= 10) {
             // initiate transaction api and make a create call to db and callback

           } else {

             // return an error message in callback
           }

        }
    }
}

您可以使用适用于每个模型的 validateLengthOf() 方法作为可验证 class 的一部分。 有关详细信息,请参阅 Loopback Validation

我想我找到了解决办法。 每当您想覆盖由 模型关系 创建的方法时,请编写如下引导脚本:

module.exports = function(app) {

    const old = app.models.Post.prototype.__create__comments;
    Post.prototype.__create__orders = function() {
      // **custom code**
       old.apply(this, arguments);
    };

};

我认为这是最好的选择。