You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
500 B
32 lines
500 B
5 years ago
|
// pages/storageConsole/storageConsole.js
|
||
|
|
||
|
const app = getApp()
|
||
|
|
||
|
Page({
|
||
|
|
||
|
data: {
|
||
|
fileID: '',
|
||
|
cloudPath: '',
|
||
|
imagePath: '',
|
||
|
},
|
||
|
|
||
|
onLoad: function (options) {
|
||
|
|
||
|
const {
|
||
|
fileID,
|
||
|
cloudPath,
|
||
|
imagePath,
|
||
|
} = app.globalData
|
||
|
|
||
|
this.setData({
|
||
|
fileID,
|
||
|
cloudPath,
|
||
|
imagePath,
|
||
|
})
|
||
|
|
||
|
console.group('文件存储文档')
|
||
|
console.log('https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/storage.html')
|
||
|
console.groupEnd()
|
||
|
},
|
||
|
|
||
|
})
|