Parse.File.fromJSON 把一个JSON转换成File对象

var file = Parse.File.fromJSON({
  name: 'file_name.txt',
  url: 'https://vpush.cloud/test.txt',
  __type: 'File'
});

其中最重要的,是__type参数,并且File区分大小写。

你可能感兴趣的:(Parse.File.fromJSON 把一个JSON转换成File对象)