我需要能够使用 javascript 或 ajax 找出 json 文件的创建日期。
这甚至可能吗?
我下面的代码请求 json 文件,但我不确定我是如何知道它何时创建的。
$.ajax({
type: 'GET',
url: localLiveUrl+'/api/v1/productchoice.json?website='+website,
async: true,
jsonp: 'callback',
dataType: 'jsonp',
success: function(productchoice){
}
});