Deno repl에 있습니다.it 데이터 베이스 사용하기

repl.it Database 사용


repl.it에서 제공하는 공식 모듈은 node를 위한 것입니다
말은 그렇지만 키=value의 기초 위에서 일반적인 get 매개 변수로 하면 돼요. 만들면 돼요.

tl;dr


모듈과 유사한 물건


dbClient.ts
import ky from 'https://deno.land/x/ky/index.js'

export class replitDbClient {
  apiUrl: String = ""

  constructor(apiUrl: string) {
    this.apiUrl = apiUrl;
  }

  async getData(getId: string): Promise<string> {
    const getUrl: string = `${this.apiUrl}/${encodeURIComponent(getId)}`
    const response: Response = await ky.get(getUrl, { headers: { 'content-type': 'text/plain	' } })
    if (response.ok) {
      const result: string = decodeURIComponent(await response.text())
      //      console.log(`get ok : [${getId}] : [${result}]`)
      return result

    } else {
      //     console.log("get ng : [${getId}]")
      throw new Error(`Fetch error: ${response.statusText}`);
    }
  }

  async putData(putId: string, putData: string): Promise<Response> {
    const setParams: string = `${encodeURIComponent(putId)}=${encodeURIComponent(putData)}`

    const response: Response = await ky.post(this.apiUrl, {
      headers: { 'content-type': 'application/x-www-form-urlencoded' },
      body: setParams
    })
    if (response.ok) {
      //      console.log(`put ok : [${setParams}]`)
      return response
    } else {
      //      console.log(`put ng : [${setParams}]`)
      throw new Error(`Fetch error: ${response.statusText}`);
    }
  }
}

부르다


import { dbClient } from './dbClient.ts'

// put
const responsePut: Response = await db.putData("test2", "testdata testdata")

// get
const responseGet: string = await db.getData("test2")

좋은 웹페이지 즐겨찾기