4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

シンプルなkey-valueオブジェクトを、kintoneレコードオブジェクトに一発で変換

Posted at

こんなオブジェクトを、kintoneにAPI経由で登録したいとします。
各キーがそのままkintoneのフィールドコードになる想定。

const obj = {
  name: 'コーラ',
  price: 120,
  count: 5,
  amount: 600,
};

kintoneレコードオブジェクトは、一段{ value: xxx }というオブジェクトを内包して、こんな感じにする必要があります。kintoneあるあるの「value面倒くさい問題」。

const record = {
  name: { value: 'コーラ' },
  price: { value: 120 },
  count: { value: 5 },
  amount: { value: 600 },
};

こんなワンライナーで変換できます。
reduce()使ってもできますが、ES2019で追加されたObject.fromEntries()の方が「オブジェクトを新しく作る」という目的がハッキリしてるので、慣れると読みやすくてオススメです。

const record = Object.fromEntries(Object.entries(obj).map(([key, value]) => [key, { value }]));

チェックボックス型みたいな配列が交じる場合は、
また色々大変だったりするので今回は割愛。
(Boolean型の1個だけのチェックボックスが欲しいんだよなー)

では、超適当ですが今日はこれにて!

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?