在“删除”按钮单击事件上,我获得了附加信息:没有为一个或多个必需参数提供值。在我的Access数据库中,CustNo是短文本的数据类型
xhttp.onreadystatechange = function() {
if(this.readyState == 4 && this.status == 200) {
var peopleTxt = this.responseText;
peopleObj = JSON.parse(peopleTxt); //.filter();
peopleObj.rounds = peopleObj.rounds.filter(a=>a.name=="Matchday 1");
html = Mustache.to_html(tp, peopleObj);
document.getElementById("demo").innerHTML = html;
}
};