以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]如何提取用户第一个角色信息 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=174850) |
-- 作者:xuxingbo -- 发布时间:2022/2/9 12:47:00 -- [求助]如何提取用户第一个角色信息 我在datarowadding 写入如下代码 e.DataRow("创建时间") = Date.Today() e.DataRow("创建人") = User.Name e.DataRow("班组") = User.Group e.DataRow("创建区域") = User.Roles 对应单元格会得到角色信息 “仪电一区,班长” 角色有很多个,如何能够只提取角色中的第一个,其他的不需要
|
-- 作者:有点蓝 -- 发布时间:2022/2/9 13:32:00 -- e.DataRow("创建区域") = User.Roles.split(",")(0) |