我有这样的一年
import React,{InputHTMLAttributes} from "react";
export interface faceTegInput extends InputHTMLAttributes<HTMLInputElement> {
readonly Tag: string;
readonly key: string;
}
export const inputSetSearch: faceTegInput = {
type: "text",
size: 50,
maxLength: 150,
placeholder: "Search for anything",
alt: "search",
spellCheck: false,
autoComplete: "off"
};
我收到此错误 类型'{type:string;大小:数字; maxLength:数字;占位符:字符串; alt:字符串; spellCheck:false; autoComplete:字符串; }”缺少类型“ faceTegInput”的以下属性:标记,键。 我不明白的原因是什么?
答案 0 :(得分:0)
您没有在 */5 * * * * curl --silent http://your-website-url/danceschool/message.php
中提供Tag
和key
。您应该将它们添加到inputSetSearch
还是将它们设置为可选。