简单快速的问题,
我正在使用facebook js api登录我的网站
FB.login(function(response){
if (response.authResponse) {
FB.api('/me', function(response) { response.birthday .... }
然后我想在我的mysql数据库中存储生日,但是fb birhday格式是MM / DD / YYYY,据我所知mysql日期格式是YYYY-MM-DD。还有其他方法可以通过bruteforce更改fb格式吗?
答案 0 :(得分:1)
使用Date对象及其功能
var date = new Date(response.birthday);
var d = date.getDate()
var m = date.getMonth() + 1;
var y = date.getFullYear();
var format_date = '' + y + '-' + (m<=9 ? '0' + m : m) + '-' + (d <= 9 ? '0' + d : d);