我正在尝试从npm模块coordEach
导入名为@turf/meta
的函数。我尝试使用import和desturctoring函数,但是我收到了这个错误:
未捕获(承诺)TypeError:对象(...)不是函数
我的代码:
import { coordEach } from "@turf/meta";
export const morphGeoJSON = (feature, bbox, width, height) => {
coordEach(
feature,
(
currentCoords,
coordIndex,
featureIndex,
multiFeatureIndex,
geometryIndex
) => {
debugger;
}
);
return feature;
};
据我所知,我正在从package正确导入所有内容。 npm安装也没问题。
我错过了什么?
我也试过
import turfMeta from "@turf/meta"
turfMeta.coordEach(feature, () => {debugger})
错误有:
未处理的拒绝(TypeError): __WEBPACK_IMPORTED_MODULE_0__turf_meta ___ default.a.coordEach不是函数