如何向 LDAP 中的多值字段添加标签
我认为标题中包含了所有内容,但让我举一个例子来更清楚。
让我们以邮件属性为例。这是一个多值属性,因此我可以在其中存储多封电子邮件,但如何使用“工作邮件”“个人邮件”等信息来标记每个项目?
谢谢你!
I think there is everything in the title but let me make an example to be more clear.
Let's take the mail attribute. It's a multi value attribute so I can store more than one email in there but how can I label each item with info like "work mail" "personal mail" and so on?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你不能,因为它的值是无序的。我唯一想到的就是在它前面或后面加上它。
office:[电子邮件受保护] 私人:[电子邮件受保护]
然后在您使用它的地方拆分它(脚本/代码)。
或者只使用多个属性,例如:邮件、私人邮件……
I don't think you can since its values are unordered. The only thing what comes to my mind is to pre- or suffix it.
office:[email protected] private:[email protected]
And then split it where you're using it (Script/Code).
Or just use multible attributes like: mail, privatemail, ...