为了账号安全,请及时绑定邮箱和手机立即绑定

javascript把json对象转为数组

javascript把json对象转为数组

慕盖茨4494581 2018-12-20 18:15:15
转换前是这样的:var articles = [{    title: 'hello',    content: 'hello world',    created_at:'2017-08-30 13:45:15'},{    title: 'foo',    content: 'foo bar',    created_at:'2017-08-30 13:45:15'}];我想把它转成这样:var articles2 = [    [ 'hello', 'hello world', '2017-08-30 13:45:15' ],    [ 'foo', 'foo bar','2017-08-30 13:46:06' ]];用js应该怎么做呢?
查看完整描述

1 回答

?
白板的微信

TA贡献1883条经验 获得超3个赞

var articles = [{

    title: 'hello',

    content: 'hello world',

    created_at:'2017-08-30 13:45:15'

},{

    title: 'foo',

    content: 'foo bar',

    created_at:'2017-08-30 13:45:15'

}]

var result = articles.map(item => {

  return Object.values(item)

})


查看完整回答
反对 回复 2019-01-22
  • 1 回答
  • 0 关注
  • 390 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信