我想检查数据库是否包含具有相同SchoolYear,GradeLevel和Section()的信息,如果该语句为true,我想显示信息已存在的消息。我已经尝试了一些代码,但我找不到什么错误
const fs = require('fs');
const path = require('path');
const pug = require('pug');
var link = document.createElement('link');
link.setAttribute('rel', 'stylesheet');
link.setAttribute('href', path.join(__dirname, 'style.css'));
document.head.appendChild(link);
const login = path.join(__dirname, 'login.pug');
fs.readFile(login, 'utf8', function (err, data) {
if (err) {
return console.log(err);
}
const htmlData = pug.render(data)
document.getElementById('app')
.innerHTML = htmlData;
});