わしのlog

プログラミングとかバイクとか。

2020-05-01から1ヶ月間の記事一覧

【メモ】Electron + React + Redux + react-routerでexactが効かない

環境 PC mac OS Ctalina : 10.15.4 package.json connected-react-router : 6.8.0 eslint-loader : 4.0.2 react : 16.13.1 react-dom : 16.13.1 react-redux : 7.2.0 react-router-dom : 5.1.2 redux : 4.0.5 electron : 8.2.5 概要 以下、迷い込むまでの道…

【メモ】ejsに文字列の配列を渡すとquotesが消失する

環境 Express 4.17.1 ejs 3.1.2 概要 こんな感じで渡すとquotesが消える(一部略)。 ソース app.get('/hoge', function (req, res) { var hoge = ["path", "to", "hoge", "fuga"]; res.render('hoge', { hoge }); }) <html> <head> <title>test</title> </head> <body> <div id="container"></div> </body> <script> document.getElementById("co</html>…

【メモ】sqlite3のUPSERTを試してみた

環境 Windows 10 Pro 64bit sqlite3 PowerShell 5.1.18362.752 概要 このたびSQLiteを触る機会があり、リファレンスを眺めているとupsertがあったので試してみた。 調べたところ、二種類あるみたいで ON CONFLICT を使って条件分岐させるものと REPLACE INTO…