无论是否选中复选框,都将 true 或 false 发送到数据库

Send true or false to database wether checkbox is checked or not

我遇到了有关 nedb 复选框的问题。如果复选框被选中,我想发送 true 或 false 到数据库我无法解决这个问题。我正在与 node.js 和 nedb 合作。请帮忙!

客户端 js 事件监听器:

var taskDone = document.querySelectorAll('.taskDone');


taskDone.forEach(btn => {
     btn.addEventListener('click', (e) => {
        var done = e.target.attributes[1].value;

        let id = e.target.getAttribute('data-id');
        let isDone = document.querySelector(`input[data-id=${id}]`).value;

        console.log(isDone + "isdone")
        if ($(taskDone).is(':checked')) {
            $('.text').addClass('line-through')
            console.log("trues")
            $.ajax({
                url: 'http://localhost:3000/done/' + id,
                type: 'PUT',
                data: { isDone }
            }).done(function (data) {
                //location.reload()
                console.log(data)
            })

        } else {
            console.log('falses')
            $('.text').removeClass('line-through')
        }
    })
})

更新函数到 nedb:

    function taskIsDone (id, done) {
    return new Promise((resolve, reject) => {
        db.update({ _id: id }, { $set: done }, { returnUpdatedDocs: true }, (err, num, updateDocs) => {
            if (err) {
                reject(err)
            } else {
                resolve(updateDocs)
            }
        })
    })
}

服务器:

app.put('/done/:_id', async(req, res) => {
  try {
    var id = req.params._id;
    let done = {
      title: req.body.isDone,
    }
      const updateToDo = await taskIsDone(id, done)
      console.log(updateToDo + " Todo done");
      res.json(updateToDo);
  } catch (error) {
    res.json({error: error.message});
  }
})

html/ejs:

<% for ( var i = 0; i < row.length; i++) { %>
        <div class="edit-container" >
        
                <input type="text" name="editTask" value="<%=row[i].title %>" data-id="<%=row[i]._id %>">

                <button name="<%= row[i]._id %>" class="edit" data-id="<%=row[i]._id %>">save edit</button>
        </div>
        
        <div>
                <input type="checkbox" name="isDone" class="taskDone" data-id="<%=row[i]._id %>">
                <span class="text"><%= row[i].title %></span>
                <button class="delete" name="<%= row[i]._id %>">delete</button>
        </div>
        <br>
    <% } %>

我真的需要一些帮助!谢谢

我重新创建了一个 minimal 示例,说明您尝试对复选框选中状态执行的操作。我添加了三个具有相同 class 名称 .taskDone

的复选框

而且我使用的是 change 函数而不是 click 函数。 Every-time 你 clickedcheckbox 上检查它会显示已检查的控制台日志以及那个 checkboxdata-id。

要获得data-id,你可以简单地使用jQuery的.data函数,并在data-**之后指定你想要的来获取它的存储值。

此外,请勿将fat arrow - => 功能与jQuery 一起使用。使用普通的函数语句,这样你就可以通过使用 $(this) 而不是指定每个 classid

来访问你的东西

现场工作演示:

let taskDone = document.querySelectorAll('.taskDone'); //get all the chechbox with same class .taskDone
taskDone.forEach(function(btn) { //use normal function
  btn.addEventListener('change', function() {
    let id = $(this).data('id') //get the data id of checkbox
    if ($(this).is(':checked')) { //check if the clicked checkbox is checked or not
      console.log(id + ' is Checked - Updating neDB') //console.log
      $.ajax({
        url: 'http://localhost:3000/done/' + id,
        type: 'PUT',
        data: 'isDone'
      }).done(function(data) {
        console.log(data)
      })
    } else {
      console.log("Not Checked")
    }
  })
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="checkbox" name="isDone" class="taskDone" data-id="1">

<input type="checkbox" name="isDone" class="taskDone" data-id="2">

<input type="checkbox" name="isDone" class="taskDone" data-id="3">