创建新实验室时,上传图像时遇到麻烦。我不知道缺少什么。已经尝试了很多方法,但是我总是最终会收到错误消息:
在null上调用成员函数store()。
控制器
<div class="form-group">
<label for="lab_img_path" class="col-sm-2 control-label">Photo</label>
<div class="col-sm-10">
<input type="file" @change="updatePhoto" name="lab_img_path" classform="form-input ">
</div>
</div>
我的组件
updatePhoto(e)
{
let file = e.target.files[0];
let reader = new FileReader();
if (file['size'] < 2111775) {
reader.onloadend = (file) => {
this.form.lab_img_path = reader.result;
};
reader.readAsDataURL(file);
} else {
Swal.fire({
type: 'error',
title: 'Oops...',
text: 'You are uploading a large file!',
})
}
}
上传照片时调用的函数:
CMAKE_SYSTEM_PROCESSOR
我该怎么做?