Есть ли способ использовать Knex, чтобы иметь столбец массивов? - PullRequest
0 голосов
/ 25 сентября 2018
{
  "id": "_9y0eqwalx",
  "tags": [
    "test",
    "python",
    "sheets"
  ],
  "title": "Whats your plans?",
  "textBody": " ???? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
  "__v": 1,
  "time": "2018-08-23T20:24:45.294Z",
  "length": 2306,
  "index": 4
},

Поэтому мне нужно, чтобы данные выглядели так для каждой заметки.Проблема связана с «тегами», которые не позволяют мне публиковать массив.Я попытался сделать следующее.

  exports.up = function(knex, Promise) {
  return knex.schema.createTable('notes', function(tbl){
    tbl.string("id").notNullable()
    tbl.string('title').notNullable()
    tbl.string('textBody').notNullable()
    tbl.integer('__v').defaultTo(0)
    tbl.integer("length")
    tbl.string("time")
    tbl.enu('tags',[]).notNullable()
  })
};

Однако столбец «теги» всегда приводит к нулю.Как настроить таблицу knex для приема массива?

1 Ответ

0 голосов
/ 26 сентября 2018

Чтобы дать лучший ответ, мне нужно знать, какой движок базы данных вы используете.

Нет другого независимого от базы данных способа хранения массива, кроме хранения его в виде сериализованной строки.Пара простых вариантов сериализации будет JSON.stringify() и JSON.parse() или string.split(',') и string.join(',').В любом случае, при каждом записи / чтении этих перечислимых массивов требуется ручное преобразование.

Чтобы создать столбец реального массива в knex, вам нужно использовать .specificType() и присвоить необработанный тип столбца базе данных.Или вы можете использовать, например, тип .jsonb() в postgresql и сохранять данные в виде массива json.

Knex не имеет большой поддержки для работы с типами json, поэтому вам может быть лучше использовать Objection.js поверхknex (имеет поддержку многих операций postgresql json).

...