开发者问题收集

未捕获的类型错误:无法读取 GoogleMapReact 中未定义的属性(读取“长度”)

2022-04-13
1433

我正在使用 GoogleMapReact 组件开发应用程序,并不断收到错误,指出 length 属性未定义。有什么我看不到的吗?非常感谢您的反馈。这些是我收到的错误代码:

Uncaught TypeError:无法读取未定义的属性(读取“length”)

react-dom.development.js:20085 组件中发生上述错误:

Uncaught TypeError:无法读取未定义的属性(读取“length”) at Map(Map.jsx:19:1)

import React from 'react';
import GoogleMapReact from 'google-map-react';
import { Paper, Typography, useMediaQuery } from '@material-ui/core';
import LocationOnOutlinedIcon from '@material-ui/icons/LocationOnOutlined';
import Rating from '@material-ui/lab/Rating';

import useStyles from './styles';

import mapStyles from './mapStyles'


const Map = (coords, setCoords, setBounds, places, setChildClicked, weatherData) => {
    const classes = useStyles();
    const matches = useMediaQuery('(min-width:600px)');


    return (
        <div className={classes.mapContainer}>
            <GoogleMapReact
                bootstrapURLKeys={{ key: process.env.REACT_APP_GOOGLE_MAPS_API_KEY }}
                defaultCenter={coords}
                center={coords}
                defaultZoom={14}
                margin={[50, 50, 50, 50,]}
                options={{ disableDefaultUI: true, zoomControl: true, styles: mapStyles }}
                onChange={(e) => {
                    setCoords({ lat: e.center.lat, lng: e.center.lng });
                    setBounds({ ne: e.marginBounds.ne, sw: e.marginBounds.sw });
                }}

                onChildClick={(child) => setChildClicked(child)}

            >
                {places.length && places.map((place, i) => (
                    <div
                        className={classes.markerContainer}
                        lat={Number(place.latitude)}
                        lng={Number(place.longitude)}
                        key={i}
                    >

                        {!matches ?
                            <LocationOnOutlinedIcon color="primary" fontSize="large" />
                            : (
                                <Paper elevation={3} className={classes.paper}>
                                    <Typography className={classes.typography} variant="subtitle2" gutterBottom> {place.name}</Typography>
                                    <img
                                        className={classes.pointer}
                                        src={place.photo ? place.photo.images.large.url : 'https://www.rlare.com/wp-content/uploads/2019/12/Inside-1-1.jpg'}
                                        alt={place.name}
                                    />
                                    <Rating size="small" value={Number(place.rating)} name="read-only" />

                                </Paper>
                            )}

                    </div>
                ))}

                {weatherData?.list?.length && weatherData.list.map((data, i) => (
                    <div key={i} lat={data.coord.lat} lng={data.coord.lon}>
                        <img src={`https://openweathermap.org/img/w/${data.weather[0].icon}.png`} height="70px" alt="map"/>

                    </div>
                ))}

            </GoogleMapReact>
        </div>
    );
}

export default Map;

在 app.js 文件中,我使用 map 组件如下:

<Grid item xs={12} md={8} style={{display: 'flex', justfiyContent: 'center', alignItems: 'center' }}>
             <Map 
             setChildClicked={setChildClicked}
             setCoordinates={setCoords}
             setBounds={setBounds}
             coordinates={coords}
             place={filteredPlaces.length ? filteredPlaces : places}
             weatherData={weatherData}
             />
             
         </Grid>
2个回答

如果您正确发送了道具,这应该可以工作。

将您的道具放在花括号中 ({coords, setCoords, setBounds, places, setChildClicked, weatherData}) 并以这种方式检查长度和数据 places?.length places?.map weatherData?.list?.map

Evren
2022-04-13

如果您使用的是 React 18,则 GoogleMapReact 组件存在问题

https://github.com/google-map-react/google-map-react/issues/1110

目前,正确的解决方案是降级到版本 17 .. 希望有帮助...

Amilkar Ferrá
2022-07-06