Не удалось скомпилировать TypeScript, поскольку объявление типа 'any' теряет безопасность типов
Как мне обратиться к сообщению об ошибке:
Failed to compile
/.../SoftwareLicenseCodes/index.tsx
(14,20): Type declaration of 'any' loses type-safety. Consider replacing it with a more precise type.
This error occurred during the build time and cannot be dismissed.
Смотрите следующий код:
import * as React from 'react';
import './SoftwareLicenseCodes.css';
interface SoftwareLicenseCodesProps {
}
interface SoftwareLicenseCodesState {
count: string;
oneTimeUsage: boolean;
duration: string;
validFrom: string;
validTo: string;
distributor: string;
[key: string]: any;
}
class SoftwareLicenseCodes extends React.Component<SoftwareLicenseCodesProps, SoftwareLicenseCodesState> {
constructor(props: SoftwareLicenseCodesProps) {
super(props);
this.state = {
distributor: '',
count:'',
oneTimeUsage: false,
duration: '',
validFrom: '',
validTo: ''
};
this.onInputChange = this.onInputChange.bind(this);
}
handleSubmit(event: React.FormEvent<HTMLFormElement>) {
alert('submit');
event.preventDefault();
}
onInputChange = (event: React.FormEvent<HTMLInputElement>) => {
const value = event.currentTarget.type === 'checkbox' ? event.currentTarget.checked : event.currentTarget.value;
this.setState({
[name]: value
});
}
render() {
return (
<div className="user-container software-codes">
<div className="user-single-container">
<h1>Software License Codes</h1>
<form className="software-codes__form" onSubmit={this.handleSubmit}>
<label>
<span className="software-codes__input-element">Count</span>
<input
name="count"
type="number"
value={this.state.count}
/>
</label>
<label>
<span className="software-codes__input-element">Distributor</span>
<input
name="distributor"
type="text"
value={this.state.distributor}
/>
</label>
<label>
<span className="software-codes__input-element">One time usage</span>
<input
name="oneTimeUsage"
type="checkbox"
checked={this.state.oneTimeUsage}
/>
</label>
<label>
<span className="software-codes__input-element">Duration</span>
<input
name="duration"
type="number"
value={this.state.duration}
/>
</label>
<input className="software-codes__input-element" type="submit" value="Submit" />
</form>
</div>
</div>
);
}
}
export default SoftwareLicenseCodes;
2 ответа
Ваш код устанавливает только строковые или логические значения, так что вы можете заблокировать его немного больше:
interface SoftwareLicenseCodesState {
count: string;
oneTimeUsage: boolean;
duration: string;
validFrom: string;
validTo: string;
distributor: string;
[key: string]: string|boolean;
// ------------^^^^^^^^^^^^^^
}
С другой стороны, если вы хотите обеспечить полную безопасность типов, вы можете удалить сигнатуру строкового индекса и написать дополнительный код, который включает имя входа и затем использует явное имя свойства. Это максимально увеличивает использование проверки типов, в то же время (очевидно) увеличивая размер / сложность кода:
function setNamed(target: SoftwareLicenseCodesState, name: string, value: string|boolean): SoftwareLicenseCodesState {
if (name === "oneTimeUsage") {
// Probably add assertion here that value is a boolean
target.oneTimeUsage = value as boolean;
} else {
// Probably add assertion here that value is a string
const strValue = value as string;
switch (name) {
case "count":
target.count = strValue;
break;
case "duration":
target.duration = strValue;
break;
case "validFrom":
target.validFrom = strValue;
break;
case "validTo":
target.validTo = strValue;
break;
case "distributor":
target.distributor = strValue;
break;
default:
// Failed assertion here
}
}
return target;
}
затем
this.setState(setNamed({}, name, value));
Неуклюжий как и все вылезает, но максимально проверяет тип.
Я действительно хочу найти способ для вас использовать индексные типы, но с именем, взятым из name
свойство input
элемент, я не вижу, как это сделать без switch
выше. Что меня беспокоит, потому что я, кажется, помню какой-то сверхумный способ использования keyof
построить тип объединения для имени...
Иногда нужно использовать any
. Например, когда вы переопределяетеintercept()
метод HttpInterceptor
класс: https://angular.io/api/common/http/HttpInterceptor
Я лично отключаю это правило. Чтобы сделать это, войдите в себяtslint.json
файл и прокомментируйте эту строку:
// "no-any": true,
Вы можете отключить это правило TSLint, хотя я не знаю, насколько это безопасно:
interface SoftwareLicenseCodesState {
count: string;
oneTimeUsage: boolean;
duration: string;
validFrom: string;
validTo: string;
distributor: string;
// tslint:disable-next-line: no-any
[key: string]: any;
}