gpt4 book ai didi

javascript - ReactJS-目录选择对话框不起作用

转载 作者:行者123 更新时间:2023-12-05 02:49:57 25 4
gpt4 key购买 nike

我想要在我的 React 应用程序中有一个目录选择对话框。我关注了this SO thread这可能对某些人有用,但对我不起作用。获取编译时错误为

Property 'directory' does not exist on type 'DetailedHTMLProps<InputHTMLAttributes, HTMLInputElement>'.

enter image description here

我将 React 升级到最新的 RC 版本 17.rc.1,认为可能有一个错误修复但没有成功。

编辑

@Scratch'N'Purr 在评论中建议,有一种技巧可以使用标签在文件末尾添加此脚本以进行目录选择。

declare module 'react' {
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
// extends React's HTMLAttributes
directory?: string;
webkitdirectory?:string;
}
}

最佳答案

它在 Javascript 中运行良好,但问题出在 Typescript 上。猜猜,你是对的 issue .

不过,您可以使用 ref 手动设置它。

import * as React from "react";
import "./styles.css";

export default function App() {
const ref = React.useRef<HTMLInputElement>(null);

React.useEffect(() => {
if (ref.current !== null) {
ref.current.setAttribute("directory", "");
ref.current.setAttribute("webkitdirectory", "");
}
}, [ref]);

return <input type="file" ref={ref} />;
}

关于javascript - ReactJS-目录选择对话框不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63809230/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com