📌  相关文章
📜  您的过滤器包含一个字段“createdAt.desc”,它既不会出现在您的模型定义中,也不会出现在它的关系中”——无论代码示例

📅  最后修改于: 2022-03-11 14:57:40.260000             🧑  作者: Mango

代码示例1
if (_.isArray(_.get(definition, 'options.timestamps'))) {
                      definition.attributes[_.get(definition, 'options.timestamps[0]')] = {
                        type: 'timestamp',
                      };
                      definition.attributes[_.get(definition, 'options.timestamps[1]')] = {
                        type: 'timestampUpdate',
                      };
                    }                  

                    // Save all attributes (with timestamps)
                    target[model].allAttributes = _.clone(definition.attributes);