使用REST API从shared列表中以dd / mm / yyyyy hh:mm AM / PM格式检索datetime字段

时间:2016-10-02 12:30:27

标签: jquery rest sharepoint

寻求帮助!!! 我使用REST API检索SharePoint列表项。日期时间字段在2016-10-01T16:00:00Z返回值。有没有办法以dd / mm / yyyy hh:mm AM / PM格式检索日期或使用jquery将日期转换为所需格式。

由于

1 个答案:

答案 0 :(得分:0)

我建议您查看图书馆Moment.js

您可以使用它解析输入字符串,因为它在库文档中进行了解释。

将库添加到class AvatarView(APIView): parser_classes = (FileUploadParser,) def post(self, request): up_file = request.data['file'] user = get_object_or_404(GenericUser, pk=request.user.id) user.avatar.save(up_file.name, up_file) user.save() return Response(status=204) ,例如:cl = Client(HTTP_AUTHORIZATION="Token {}".format(token)) with open(MY_FILE, 'rb') as f: data = f.read() res = cl.post('/avatar', {"plop.png" : data}, HTTP_CONTENT_DISPOSITION="attachment; filename=plop.png;")

然后在<head>尝试:

<script type="text/javascript" src="[If not in the folder containing your html file, specifiy your path beneath the folder containing it + "/"]moment-with-locales.min.js"></script>

它将显示:&#34;测试:01/10/2016 06:00:00 PM&#34;

它显示下午6点,因为我位于UTC + 2小时。