使用node.js写入文件后,无法访问localhost

时间:2018-03-01 06:39:24

标签: javascript node.js express

我正在尝试使用节点写入文件,基本上我有一个带有一些复选框的表单,并且在提交表单时,服务器会根据是否选中输入a,b或c来写入文件。

该文件是一些json: { a:0, b:0, c:0 } 因此,如果选中输入'a',我想在json文件中将键1加1。

实际发生的情况是,当我提交表单时,页面崩溃并说“无法访问此站点”,但文件已正确更新(当我刷新网页时,它也正常加载)。

以下是代码:

const express = require('express'),
    app = express(),
    bodyParser = require('body-parser'),
    fs = require('fs');

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
    extended: true
}))
app.post('/vote/new', handleVote);

function handleVote(req,res){
    if(req.body.a === 'on'){
        choosePollOption(req,res,'a');
    }else if(req.body.b === 'on'){
        choosePollOption(req,res,'b');
    }else if(req.body.c === 'on'){
        choosePollOption(req,res,'c');
    }
}

function choosePollOption(req,res,topic){
    let poll = {};
    fs.readFile(__dirname + '/poll.json', 'utf8', function (err, data) {
        poll = JSON.parse(data);
        poll[topic] += 1;
        console.log(poll)
        fs.writeFile(__dirname + '/poll.json',JSON.stringify(poll), function (err,data) {
            console.log(err);
            console.log(data);
            // res.redirect('/'); if I uncomment this line the page does not initially crash but if you submit the form again after refreshing the webpage it crashes the second or third time.
        })
    })

    console.log(poll);
}

编辑: 这是前端代码:

<form action="/vote/new" method="POST">
    <label for="a">a</label><input id="a" name="a" type="checkbox"  class="checkbox" onclick="vote(this)"/>
    <label for="b">Mac OS</label><input id="b" name="b" type="checkbox" class="checkbox" onclick="vote(this)"/>
    <label for="c">c</label><input id="c" name="c" type="checkbox"  class="checkbox" onclick="vote(this)"/>
    <input type="submit" />
</form>

let vote = (element) => {
    let checkboxes = document.getElementsByClassName('checkbox'); // array of all check boxes
    for(let i = 0; i <= checkboxes.length -1; i++){
        if(checkboxes[i].id !== element.id){
            checkboxes[i].checked = false;
        }
    }

}

编辑:

这是poll.json文件:

{"a":2,"b":0,"c":0}

1 个答案:

答案 0 :(得分:2)

在处理表单后,您似乎忘了向客户发送内容。因此,只需将//res.redirect(...)替换为res.status(200).end('Ok')

即可