var file = Parse.File.fromJSON({
name: 'file_name.txt',
url: 'https://vpush.cloud/test.txt',
__type: 'File'
});
其中最重要的,是__type參數(shù),并且File區(qū)分大小寫。
var file = Parse.File.fromJSON({
name: 'file_name.txt',
url: 'https://vpush.cloud/test.txt',
__type: 'File'
});
其中最重要的,是__type參數(shù),并且File區(qū)分大小寫。