2021-10-01から1ヶ月間の記事一覧
(go17.1) package main import ( "fmt" ) func main() { fmt.Println("---a := map[string]bool{}") a := map[string]bool{} fmt.Printf("%v\n", a) fmt.Printf("%v\n", a["hoge"]) fmt.Println("---a[\"hoge\"] = true") a["hoge"] = true fmt.Printf("%v\n…
特定の1日の1分ごとに作成されたレコード数を取得してみる (hoge_table の created_at カラムで集計) SELECT to_char(created_at, 'YYYY-MM-dd hh24 MI') AS t_time, COUNT(id) AS amount FROM hoge_table WHERE created_at BETWEEN '2021-10-22 00:00:00'…
クロスオリジン要求をブロックしました: 同一生成元ポリシーにより~ みたいなエラーが出るか確認するためのメモ <html lang="ja"> <head> <meta charset="utf-8"> <title>example</title> </head> <body> <h1>hoge!!!1</h1> <script> var myRequest = new Request("http://localhost:8000/api/hoge"); fetch(myRequest).then(function(response) { retu</body></html>…