我正在使用 HTML/javascript 连接到我的移动网络服务。
选择查询工作正常,没有问题并且连接完成,现在我想更新一行。更新在我的 html 页面中不起作用,没有错误 Alerting.the last alert line not reached 。我需要将状态更新为“2”这是我的 javascript
var TimeListTable = client.getTable('Match_Times');
//
TimeListTable.update({
id: "2",
status: "2"
}).read().done(function (result) {
alert("updating done")
}, function (err) {
alert("Error: " + err);
});
alert("reach here")