如何使 mysite 配置文件属性以不同的方式显示?

发布于 2024-08-23 18:44:18 字数 190 浏览 8 评论 0原文

我们在 AD 中有一个字符串,它实际上以 YYYYMMDD 格式存储日期,当您将其在共享点中映射到配置文件属性时,它看起来很丑陋,例如 20091130。我们的 AD 人员拒绝更改它在 AD 中的格式,所以我们想知道是否有一种方法(也许是javascript?)来更改它,以便它至少在一些连字符中添加's,例如2009-11-30。

有人吗? :-)

We have a string in AD which is actually storing a date in the YYYYMMDD format, which when you map it in sharepoint to a profile property, just looks plain ugly, e.g. 20091130. Our AD people are refusing to change the format of it in AD, so we were wondering if there was a way (javascript perhaps?) of changing it so that it at least add's in some hyphens, e.g 2009-11-30.

Anyone? :-)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对岸观火 2024-08-30 18:44:18
var udate = "20091130";
var format_date = udate.substr(0,4)+'-'+udate.substr(4,2)+'-'+udate.substr(6,2);

我能想到的唯一解决方案。

var udate = "20091130";
var format_date = udate.substr(0,4)+'-'+udate.substr(4,2)+'-'+udate.substr(6,2);

The only solution I can think of.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文