0

Node.js を SQLite3 と共に使用して、データベースと通信しています。新しいデータを正常に追加し、既存のデータを読み取ることができます。私の問題は、Node.js サーバーを再起動しない限り、インターフェースから追​​加したデータを取得できないことです。

データベースがロックされている可能性が高いか、新しいデータを再読み取りする機能を変更する必要があることはわかっていますが、どうすればよいかわかりません。

コードは申し訳ありませんが、時間の経過とともに搾乳された母乳の量を追跡し、グラフ化するように設計されています.

サーバー.js


    var express = require('express')
    var tempstats = require('./db.js')
    var path = require('path')
    var app = express()
        // var db = require('./db.js')
    var sqlite3 = require('sqlite3')
    var db = new sqlite3.Database('web-app.db')

    var publicPath = path.resolve(__dirname, "public");
    app.use(express.static(publicPath));

    // Parse URL-encoded bodies (as sent by HTML forms)
    app.use(express.urlencoded());

    // Parse JSON bodies (as sent by API clients)
    app.use(express.json());

    // All general page links should be listed below
    app.get("/", function(request, response) {
        response.sendFile("/index.html", {});
    });
    // Access the parse results as request.body
    app.post('/', function(request, response) {
        console.log(request.body.user.leftBrest);
        console.log(request.body.user.rightBrest);
        db.run('INSERT INTO milk VALUES (NULL, ?, ?, CURRENT_TIMESTAMP)', [request.body.user.leftBrest, request.body.user.rightBrest], function(err) {
            if (err) {
                console.log("There's another error!" + err.message);
            } else {
                console.log('Record successfully added with id: ' + this.lastID);
                response.sendFile(__dirname + "/public/index.html");
            }
        });
    });

    // SQL data interaction functions from db.js
    app.get('/left', function(req, res) {
        res.send(tempstats.lastAmountLeft + '')
        console.log(tempstats.lastAmountLeft + '')
    })
    app.get('/right', function(req, res) {
        res.send(tempstats.lastAmountRight + '')
        console.log(tempstats.lastAmountRight + '')
    })

    app.get('/selectedTemp', function(req, res) {
        res.send(tempstats.selectedTemp + '')
    })


    // Json testing sendfile is different to sendFile
    app.get('/json', function(req, res) {
        res.sendfile('./test.json', {})
    })

    // 4xx Errors are served from here
    // app.use(function(req, res) {
    //     res.status(404)
    //     res.render('404.html', {
    //         urlAttempted: req.url
    //     })
    // })

    // Server listen code
    var port = 3000
    app.listen(port, function() {
        console.log('The server is listening on port ' + port)
    })

db.js

lastAmountLeft と LastAmountRight は更新する必要がありますが、更新しません。(私は自分のhtmlページ内でもそれらの値を使用しています)


    'use strict'

    var sqlite3 = require('sqlite3')
        // var db = new sqlite3.Database('web-app.db')
    let db = new sqlite3.Database('web-app.db', (err) => {
        if (err) {
            return console.error(err.message);
        }
        console.log('Connected to the in-memory SQlite database.');
    });

    const tempstats = {}


    db.each('SELECT * FROM milk WHERE rowid = 3', function(err, row) {
        if (err) {
            console.log('Oh no!' + err.message);
        } else {
            console.log('Row ID: ' + row._id + " shows the left breast had an expressed volume of: " + row.left + "ml")
            tempstats.specificAmountLeft = row.left;

        }
    })

    db.get('SELECT * FROM milk WHERE date order by date desc limit 1', function(err, row) {
        if (err) {
            console.log('Oh no!' + err.message);
            return;
        }

        console.log(row)

        console.log("The last expressed volume from the left breast was: " + row.left + "ml")
        tempstats.lastAmountLeft = row.left;


    })

    db.get('SELECT * FROM milk WHERE date order by date desc limit 1', function(err, row) {
        if (err) {
            console.log('Oh no!' + err.message);
            return;
        }

        console.log(row)

        console.log("The last expressed volume from the right breast was: " + row.right + "ml")
        tempstats.lastAmountRight = row.right;


    })
    module.exports = tempstats
        // module.exports = db

4

1 に答える 1