Sails / Waterline中的软删除

时间:2014-12-02 06:16:38

标签: node.js sails.js waterline soft-delete

尝试使用以下方法删除用户模型:

//Hard Delete    
User.destroy({id:userId}, function(err, res){  
  //Hard Delete
})  

我需要在User模型上进行软删除,并且当前在删除和更新文档时将isDeleted标志设置为true:

updateUser.isDeleted = true;
User.update({id:userId}, updateUser, function(err, res){
  Update project
})

并且在获取文档时我正在检查if isDeleted - 是否为真 是否有Sails或Waterline提供的内置功能,我可以配置它来执行软删除并避免更新,然后根据isDeleted标志进行提取?

2 个答案:

答案 0 :(得分:1)

你可以使用beforeFind()生命周期函数来过滤软删除的记录

型号:parrot,js

#define _GNU_SOURCE
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <limits.h>

int
main(int argc, char *argv[])
{
    int fd;
    int len, slen;
    if (argc != 2) {
        fprintf(stderr, "Usage: %s <file>\n", argv[0]);
        exit(EXIT_FAILURE);
    }
    fd = open(argv[1], O_WRONLY | O_CREAT | O_TRUNC, 0644);
    if (fd == -1) {
        perror("open");
        exit(EXIT_FAILURE);
    }
    do {
        /*
         * tee stdin to stdout.
         */
        len = tee(STDIN_FILENO, STDOUT_FILENO,
                  INT_MAX, SPLICE_F_NONBLOCK);
        if (len < 0) {
            if (errno == EAGAIN)
                continue;
            perror("tee");
            exit(EXIT_FAILURE);
        } else
            if (len == 0)
                break;
        /*
         * Consume stdin by splicing it to a file.
         */
        while (len > 0) {
            slen = splice(STDIN_FILENO, NULL, fd, NULL,
                          len, SPLICE_F_MOVE);
            if (slen < 0) {
                perror("splice");
                break;
            }
            len -= slen;
        }
    } while (1);
    close(fd);
    exit(EXIT_SUCCESS);
}

ParrotController.js

module.exports = {
    attributes: {
        // e.g., "Polly"
        name: {
            type: 'string'
        },

        // e.g., 3.26
        wingspan: {
            type: 'float',
            required: true
        },

        // e.g., "cm"
        wingspanUnits: {
            type: 'string',
            enum: ['cm', 'in', 'm', 'mm'],
            defaultsTo: 'cm'
        },

        // e.g., [{...}, {...}, ...]
        knownDialects: {
          collection: 'Dialect'
        },

        isDeleted:{
            type:'boolean'
        }
    },

    beforeFind: function(values, cb) {
        values.isDeleted = false;
        cb();
    }
}

答案 1 :(得分:0)

帆中没有内置软删除功能,我怀疑会有。

这是一个挑战:为什么不写自己的? Waterline supports class methods!当然,您必须为每个模型执行此操作或创建服务......这可能会更有效。