|
|
回复 7# bess
var doc = $CURRDOC.getCurrDoc();
var processor = "";
if(doc.getState() != null) {
var actors = doc.getState().getActors();
if (actors != null) {
for(var it = actors.iterator(); it.hasNext(); ) {
var actorrt = it.next();
if (actorrt.getIsprocessed()) {
continue;
}
processor += actorrt.getId() + ',';
}
}
}
processor;
这样获取id,好像id不是表t_user的id |
|