0
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.

json api形式のスネークケースのレスポンスをキャメルケースにする[jsona]

Posted at

スネークケースのレスポンスをキャメルケースにしたい

背景

フロントエンド側でapiつなぎこみ作業していて、
サーバーからのレスポンスがスネークケースで、
そのままフロント側で使うとeslintエラーになる。。。
そこでスネークケースをキャメルケースに手動で変換する。。。 ← これがめんどい、なんとかしたい

対処

こんな感じのレスポンスが来たとする

{
  "data": {
    "id": "1",
    "type": "movie",
    "attributes": {
      "name": "test movie",
      "year": null,
      "is_released": true,
      "director_name": "hoge"
    }
  }
}

まず、jsonaというライブラリを使って、扱いやすい形にする

import axios from 'axios'
import Jsona from 'jsona'

const dataFormatter = new Jsona()
const getData = async () => {
    try {
        const response = await axios.get('/data')
        console.log(dataFormatter.deserialize(response))
    } catch (error) {
        console.log(error)
    }
}

// console.logの結果
{
  type: 'movie',
  id: '1',
  name: 'test movie',
  year: null,
  is_released: true, // ここと
  director_name: 'hoge' // ここをキャメルケースにしたい
}

jsonaのオプションにいい感じのがある
jsonaの初期化時にオプションとして、SwitchCaseJsonMapperを下のように渡せば良い

import Jsona, { SwitchCaseJsonMapper } from 'jsona

const dataFormatter = new Jsona({
    jsonPropertiesMapper: new SwitchCaseJsonMapper({
        switchChar: '_'
    })
})

こうすることで先ほどのconsole.logの結果が、下のようにキャメルケースになる

{
  type: 'movie',
  id: '1',
  name: 'test movie',
  year: null,
  isReleased: true,
  directorName: 'hoge'
}
0
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
0
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?