dcat-admin
dcat-admin copied to clipboard
限制了文件上传类型 xlsx 但是还是可以上传图片
- Laravel Version: #.#.#
- PHP Version: #.#.#
- Dcat Admin Version: #.#.#
Description:
Steps To Reproduce:
v2.1.7-beta
WebUploader 里的 extensions 到底应该是数组还是 字符串呀、、
public function accept(string $extensions, string $mimeTypes = null)
{
$this->options['accept'] = [
'extensions' => [$extensions],
];
if ($mimeTypes !== null) {
$this->options['accept']['mimeTypes'] = $mimeTypes;
}
return $this;
}
加个中括号可以了
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.