2

私はそれを機能させるために文字通りすべてを行いましたが、まだ機能していません

プレビュー ドキュメントと同じように cdn からロードしました

<!-- add to document <head> -->
<link href="https://unpkg.com/filepond/dist/filepond.css" 
rel="stylesheet">
<link href="https://unpkg.com/filepond-plugin-image-preview/dist/filepond- 
plugin-image-preview.css" rel="stylesheet">

<!-- add before </body> -->
<script src="https://unpkg.com/filepond-plugin-image- 
preview/dist/filepond-plugin-image-preview.js"></script>
<script src="https://unpkg.com/filepond/dist/filepond.js"></script>

私が持っている filepond 要素に拡張するには

<script>
const inputElement = document.querySelector('input[type="file"]');
const pond = FilePond.create( inputElement );
</script>

そして最後に

<input type="file">

画像プレビューではなく、ファイルとして表示されるだけです。私は何が欠けていますか?

4

1 に答える 1