接下来是错误代码那段
js代码
const AV = require('../../libs/av-weapp-min.js');
const Todo = require('../../model/todo.js');
var query = new AV.Query('Todo');
query.get('57328ca079bc44005c2472d0').then(function (todo) {
// 成功获得实例
// todo 就是 id 为 57328ca079bc44005c2472d0 的 Todo 对象实例
}, function (error) {
// 异常处理
});
// pages/picture/picture.js
Page({
/**
* 页面的初始数据
*/
data: {
draft:'',
tempFilePaths: '' ,
todos: [],
icon:'https://mmbiz.qpic.cn/mmbiz_png/ef1n161oERoXnAwhkfk4sbiaCnGgjm1r8TcrsyPsapgHDdJQChFR3ncBgZUNibQw2Lj86T8CiaIjVgITU2j7sb2kw/0?wx_fmt=png',
image:'https://mmbiz.qpic.cn/mmbiz_jpg/ef1n161oERpl2ClbkLicgmOM3XXZK54RiadXm6Q8ibcqMajPPPgEkdwicTUo6ExfLOZ8FicbGJd03AI97Dqria1PKEww/0?wx_fmt=jpeg',
},
onLoad: function () {
AV.init({
appId: 'EJx0NSfY*********-gzGzoHsz',
appKey: 'FBVPg5G*******T97SNQj',
});
},
chooseimage: function () {
var _this = this;
wx.chooseImage({
count:9, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
_this.setData({
tempFilePaths: res.tempFilePaths
})
var tempFilePath = res.tempFilePaths[0];
new AV.File('file-name', {
blob: {
uri: tempFilePath,
},
}).save().then(
file => console.log(file.url())
).catch(console.error);
}
})
},
updateDraft: function ({
detail: {
value
}
}) {
this.setData({
draft: value,
});
},
addTodo: function () {
new Todo({
content: this.data.draft,
done: false
}).save()
.then(console.log)
.catch(console.error);
},
/**
* form提交事件
*/
bindFormSubmit: function (e) {
self = this
//提问内容
var input = e.detail.value.input;
if (input == '') {
wx.showToast({
title: '内容不能为空',
icon: 'loading',
duration: 1000,
mask: true
})
}
else {
wx.showToast({
title: '发送成功',
icon: 'success',
duration: 2000,
mask: true
})
setTimeout(function () {
wx.hideLoading()
}, 2000)
wx.navigateBack({
delta: 1
})
}
},
//点击预览图片
ylimg: function (e) {
wx.previewImage({
current: e.target.dataset.src,
urls: this.data.res.tempFilePath // 需要预览的图片http链接列表
})
},
然后是wxml的
提交
u是todo下面那个