fix(uploader): fix uploader demo for beforeRead function (#4235)

This commit is contained in:
Yiming Pan 2021-05-30 06:39:41 +08:00 committed by GitHub
parent f5370bc54a
commit edf7409021
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ Page({
beforeRead(event) {
const { file, callback = () => {} } = event.detail;
if (file.path.indexOf('jpeg') < 0) {
if (file.url.indexOf('jpeg') < 0) {
wx.showToast({ title: '请选择jpg图片上传', icon: 'none' });
callback(false);
return;