如何从 Microsoft Azure 服务器上的某些 table 的插入脚本更新另一个 table?
How do I update another table from insert script of some table on microsoft azure server?
function insert(item, user, request) {
intoo();
item.mid=idd;
request.execute({success:updateGroup});
function updateGroup(results){
var group_gid;
var groups=tables.getTable('groups');
groups
.where(({ gid : item.gid}))
.read();
group_gid=getItem(results);
group_gid.appended_mid=group_gid.appended_mid+" "+item.mid;
groups.update(group_gid);
}
function getItem(results){
for (var item in results) {
return item;
}
}
}
该项目已插入此 table(此插入脚本属于其),但组 table 未更新。
NOTE:The table 不在 SQL 数据库中。
试试这个,它应该有效
var groups=tables.getTable('groups');
groups
.where(({ gid : item.gid}))
.read({success:updateGroup});
function updateGroup(results){
var group_gid;
group_gid=results[0];
group_gid.appended_mid=group_gid.appended_mid+" "+item.mid;
groups.update(group_gid);
request.execute();
}
function insert(item, user, request) {
intoo();
item.mid=idd;
request.execute({success:updateGroup});
function updateGroup(results){
var group_gid;
var groups=tables.getTable('groups');
groups
.where(({ gid : item.gid}))
.read();
group_gid=getItem(results);
group_gid.appended_mid=group_gid.appended_mid+" "+item.mid;
groups.update(group_gid);
}
function getItem(results){
for (var item in results) {
return item;
}
}
}
该项目已插入此 table(此插入脚本属于其),但组 table 未更新。 NOTE:The table 不在 SQL 数据库中。
试试这个,它应该有效
var groups=tables.getTable('groups');
groups
.where(({ gid : item.gid}))
.read({success:updateGroup});
function updateGroup(results){
var group_gid;
group_gid=results[0];
group_gid.appended_mid=group_gid.appended_mid+" "+item.mid;
groups.update(group_gid);
request.execute();
}