我正在尝试从Service Now中的外部网页删除记录。我有两个文件,一个是java脚本,一个是html。我有三个字段名称,等级,纯度等级。这是我的代码,当我按下删除按钮而不是删除记录时,此代码在我的视图页面中添加记录。我也附上了这张照片。
ondeleteReagant(){
this.http.post('/api/now/table/x_197846_team_nan_reagent',"{'name':'"+this.name+"','grade':'"+this.grade+"','puritylevel':'"+this.puritylevel+"'}", this.httpOptions ).toPromise().then(resp=>{
console.log(resp);
},error=>{console.log(error)});
}[enter image description here][1]