getUserProcess()
概述
生成用户操作对象。
返回值
参数
示例
描述:
实现getUserProcess()函数的应用,创建指定类对象
iScript 代码:
//根据用户账号获取用户对象 (function(){ var process = getUserProcess(); //创建指定类对象 var userAccount=getWebUser().getLoginno(); var user=process.getUserByLoginno(userAccount,getDomainid()); println(user); return user; })()