作为打字稿的初学者,我一直在关注类型符号。
我可以跨越很多解决方案,在 github 中将其定义为 useState<any>
,但在我的情况下它不是对象数组。
代码:
export default async function xhttp(
input: NetworkParam,
config?: NetworkRequestConfig
): Promise<NetworkSuccessResponse | NetworkErrorResponse | any> {
try {
const CancelToken = axios.CancelToken;
const source = CancelToken.source();
if (config && config.cancelPrevious) {
input.cancelToken = source.token;
// remove previous from network store
const storeState = store.getState();
if (storeState && "network" in storeState) {
const networkState = storeState.network;
// cancel previous
if (config.requestType && networkState.hasOwnProperty(config.requestType)) {
try {
networkState[config.requestType].cancel();
} catch (e) {
console.log(e);
}
}
}
我得到:property "network" does not exists on 'never'.
以上代码是一个 .tsx 文件。