数据库(MS Access)更新错误Visual Studio

时间:2019-06-12 17:40:17

标签: vb.net visual-studio

我有一个数据库,其中包含记录,日期,名称,目的,其他,CTC,IssuedAt,IssuedOn和OR

所以基本上我想更新记录,我有另一种形式,我使用相同的代码,并且运行得很好,我尝试了很多次,如果也许我输入了错误的代码或者是什么使得代码失败,但我无法弄清楚,也许你们可以帮助我解决问题 我真的希望你们能帮到我:D TIA

试图重新输入内容,也许我只是想念一些东西 我已经仔细检查了所有内容。

var mainApp = angular.module("mainApp", []);
mainApp.controller('searchController', function($scope, $http) {
$scope.search = function(e){
  if(e.code === 'Enter'){
    if($scope.input_field == null){
alert("Cannot be empty!");
}
else {
var scopeItem = $scope.input_field;
$scope.keywords = $scope.keywords || [];
$scope.keywords.push($scope.input_field) 
scopeItem.toJSON;
scopeItem = JSON.stringify({"keyword" : $scope.keywords});
// var res = $http.post('https:/something', scopeItem, {headers: {'Content-Type':'text/plain'}}).then(function success(data, status, headers, config){
// $scope.message = data;
// });
alert("Please wait while we process your hashtag!");
alert(scopeItem);
console.log(scopeItem);
$scope.input_field = '';
}
}
  }
});

它说语法错误UPDATE语句

0 个答案:

没有答案
相关问题