function handler(e){
const el = e.target;
const activeBtn = el.querySelector('.btn_active')
const activePane = el.querySelector('.pane_active')
// next logic
}
И если я буду искать не по хешу, а по обыкновенному id, то хеш я не получу, мне придётся делать функцию, которая будет преобразовывать id в хеш?
hash: {
type: new Sequelize.VIRTUAL(Sequelize.STRING, ["id"]),
get: function() {
console.log(this.get("id"))
return hashids.encode(this.get("id"));
}
},
из-за чего может быть это?- это виртуальная колонка. Её следует удалять перед запросом в бд, у вас вероятно нет колонки hash в бд
const Sequelize = require('sequelize');
const config = require('../../config')
const Hashids = require('hashids');
const hashids = new Hashids('', 0, config.hashids.string);
const ads = sequelize.define('ads', {
hash: {
type: new Sequelize.VIRTUAL(Sequelize.STRING, ["id"]),
get: function() {
return hashids.encode(this.get("id"));
}
},
user_panel_id: {
type: Sequelize.INTEGER,
allowNull: false
},
name: {
type: Sequelize.STRING,
allowNull: false
},
}, {
charset: 'utf8',
collate: 'utf8_unicode_ci',
timestamps: true,
hooks: {
beforeFind: pkHashToNumber,
beforeDestroy: pkHashToNumber,
beforeUpdate: pkHashToNumber
}
})
ads.sync({force: false})
module.exports = ads;
Имена свойств у всех одинаковые? - разные.
Глубина везде одинаковая? - да, контракт.
Путь должен быть всегда полный? - да. 'a.b.c.d'