存档
06月 2022
显示总共16条中的前3条
Typed property Yiisoft\Form\FormModel::$attributes must not be accessed before initialization
发布者 : 粮油菜大市场 发布时间 : 19 Jun 2022 08:26:02
Typed property Yiisoft\Form\FormModel::$attributes must not be accessed before initialization
对应出错的地方,页面
Field::text($form, 'name')->addInputAttributes(['class' => 'form-control'])
windows 11 任务栏图标不见了?怎么恢复呢?
发布者 : 粮油菜大市场 发布时间 : 16 Jun 2022 08:40:41
好奇特,把我弄得不知所措,由于电脑触屏可能是年代太久远了,有些地方自己总是不停处于“点击状态”,然后就重启了电脑,诡异事情发生了,任务栏上出了搜索那个输入框新启动的程序无法显示图标,发现任务栏设置声音网络等也是灰色锁定无法更改状态,病毒检测好像什么也没有、、、有点怕怕,感觉好像是黑客控制了一样,使我这个还懂一些电脑知识的人举手无措,、、、后来查看任务管理器,就随便结束了一个程序,没确切记下程序名字好像是moUSO Core Worker Process,网上又说这个程序会占用大量虚拟内存导致其他程序异常,似乎靠谱,、、、
flutter dio how to upload multiple files ,only keep one when upload multiple files?
发布者 : 粮油菜大市场 发布时间 : 15 Jun 2022 03:27:02
flutter dio how to upload multiple files ,only keep one when upload multiple files?
we can get the answer from
it seems work ok before ,but when i upload multiple files ,it can only keep the last one,
finally i get the answer, rename the MapEntry name to array,it is ok now
var formData = FormData();
for (var file in filepath) {
formData.files.addAll([
MapEntry("assignment[]", await MultipartFile.fromFile(file)),
]);
}