boot crud应用程序和thymeleaf:接受视频类型

guykilcj  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(622)

我有一个springboot应用程序。以接受所有视频类型

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <!-- Meta Tags -->
    <meta charset="UTF-8">

</head>

<body class="public app app-embed" onorientationchange="window.scrollTo(0, 1)">

<div id="form-embed">

    <div id="messages"></div>

    <form action="#" th:action="@{/adduser.html}" th:object="${user}" method="post" enctype="multipart/form-data">

        <!-- File -->
        <div class="form-group textogbcn">
            <label  for="video">Video</label>
            <input type="file" id="video"  name="files" accept="video/*">
        </div>

    </form>

</div>
</body>

</html>

但似乎只接受mp4,而不接受mkv,
测试 Chrome v87.0.4280.88 (Build oficial) (x86_64)

kokeuurv

kokeuurv1#

尝试以下解决方案作为解决方法。

<input type="file" accept="video/*,.mkv">

解释https://stackoverflow.com/a/56455137/6572971

相关问题