.toJson()将日期转换为UTC

时间:2018-05-21 10:14:44

标签: angular angular2-services

我有datepicker,想要给我的休息服务发送日期。调试时,我看到了一个日期,它是有效的。

object

但是当我执行.toJSON()将其发送到服务时,Angular将日期转换为UTC并像这样发送:

htttp request

如何发送有效日期?

2 个答案:

答案 0 :(得分:0)

完成!

在datepipe上进行转换已经成功了

curl -d '{"timestamp":1526900318,"request":{"username":"blubberfucken","type":"username_check"}}' -H "Content-Type: application/json" -X POST http://localhost/v1/api.php

答案 1 :(得分:0)

在将日期发送到休息服务之前使用:

var variableToSendToRestService = yourDateVariable.toLocaleString();

这将转换你的日期变量' (使用本地设置将字符串作为日期对象)。

有关详情,请参阅:

toLocaleString() reference for Date