如何在角度2中获取json文件的最后修改日期

时间:2017-12-28 08:00:25

标签: angular datetime

我从JSON文件中获取数据。

我想要该json文件的最后修改日期时间

这是我从JSON文件中获取数据的方式

private _url = 'http://localhost:54362/app/output.json';
 this.http.get(this._url)
                    .toPromise()
                    .then((response) => {
                        this.jsonData = response.json();
                    }).catch((err) => {
                        console.log(err);
                    });

如何获得lastModified日期?

编辑:

在标题中我得到这样......

console.log(response.headers._headers)


Map {"date" => ["Thu, 28 Dec 2017 08:29:15 GMT"], "etag" => [""8b6668d5a47fd31:0""], "last-modified" => ["Thu, 28 Dec 2017 06:26:45 GMT"], "server" => ["Microsoft-IIS/10.0"], "x-powered-by" => ["ASP.NET"]…}

如何访问上次修改日期在此???

1 个答案:

答案 0 :(得分:1)

这应该从标题

中提供最后修改日期
response.headers.get('last-modified')