gpt4 book ai didi

javascript - 传单 w/React : Individual country color won't re-render when this. Prop 更新,仅当鼠标悬停时发生?

转载 作者:行者123 更新时间:2023-12-03 04:44:59 25 4
gpt4 key购买 nike

我已经成功制作了一张传单 map ,其中每个国家/地区的颜色根据我收到的 this.props.data 的输入而变化。在这个特定的 React 组件中。

它将正确显示国家/地区和初始颜色。然而,该信息每分钟都会从后端提供。如果this.props.data更新时,国家/地区不会改变颜色 - 仅当我将鼠标悬停在特定国家/地区时;那么颜色真的会改变吗?

作为引用,我从文件(本质上是国家/地区的 JS 数据库)导入 React 类中的国家/地区,如下例所示:http://codepen.io/dagmara223/pen/jydMqy

这是我的源代码。

import React from 'react';
import L from 'leaflet';
import countries from './countries.js';


var Worldmap = React.createClass({

render: function() {

if(!this.props.data)
return <div> loading world map .. </div>;

let dataratio = this.props.data; // Props from main component
let size = Object.keys(dataratio).length; // Do we have data?

if(size > 1) { // If we do have data, ..

let dataratioToArr = Object.keys(dataratio).map(data => [ data, dataratio[data]]); // Conv. map to multidimensional array

let featuresArr = countries.features; // array of all countries in array features from countries.js

for(let i = 0; i < featuresArr.length; i++) // i = 178(no. of countries)
for(let j = 0; j < dataratioToArr.length; j++) // j = no. of countries we have with dataratio > 1 from backend
if(dataratioToArr[j][0] == featuresArr[i].id) // If ISO-3 compliant ID of country(f.e. "USA") matches, push a "data" property to countries.js
featuresArr[i].properties.data = dataratioToArr[j][1];
}

return(
<div id="leafletmap" style={{width: "100%", height: "80%", border: "2px solid black" }} />
)
},

componentDidMount : function() {
let geolocation = [];
// Retrieve geoloc coordinates
navigator.geolocation.getCurrentPosition(function(position) {
let lat = position.coords.latitude;
let lon = position.coords.longitude;

if(lat != null && lon != null) // If we can get latitude and longitude, reset geolocation and push values.
geolocation.length = 0;
geolocation.push(lat, lon);
if(!lat || !lon) // If we can't get latitude or longitude, set a default value.
geolocation = [0,0];

let map = L.map('leafletmap').setView(geolocation, 3); // ([coordinates], zoomlevel)

let info = L.control();

info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
this.update();
return this._div;
};

info.update = function (props) {
this._div.innerHTML = '<h4>Data ratio</h4>' + (props ?
'<b>' + props.name + '</b><br />' + props.data + ' ratio'
: 'Hover over a country');
};

info.addTo(map);


function getColor(d) {
return d > 90 ? '#4a1486' :
d > 75 ? '#6a51a3' :
d > 50 ? '#807dba' :
d > 25 ? '#9e9ac8' :
d > 15 ? '#bcbddc' :
d > 5 ? '#dadaeb' :
d > 1 ? '#f2f0f7' :
'#D3D3D3'; // Default color of data doesn't exist or is 0.
}


function style(feature) {
return {
weight: 2,
opacity: 1,
color: 'white',
fillOpacity: 1,
fillColor: getColor(feature.properties.data)
};
}

function highlightFeature(e) {
let layer = e.target;

layer.setStyle({
weight: 5,
color: '#666',
fillOpacity: 0.7
});

if (!L.Browser.ie && !L.Browser.opera && !L.Browser.edge) {
layer.bringToFront();
}

info.update(layer.feature.properties);
}

let geojson;

function resetHighlight(e) {
geojson.resetStyle(e.target);
info.update();
}

function zoomToFeature(e) {
map.fitBounds(e.target.getBounds());
}

function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight,
click: zoomToFeature
});
}


geojson = L.geoJson(countries, { // from import
style: style,
onEachFeature: onEachFeature
}).addTo(map);

let legend = L.control({position: 'bottomright'});

legend.onAdd = function (map) {

let div = L.DomUtil.create('div', 'info legend'),
grades = [1, 5, 15, 25, 50, 75, 90],
labels = [],
from, to;

for (let i = 0; i < grades.length; i++) {
from = grades[i];
to = grades[i + 1];

labels.push(
'<i style="background:' + getColor(from + 1) + '"></i> ' +
from + (to ? '&ndash;' + to : '+'));
}

div.innerHTML = labels.join('<br>');
return div;
};

legend.addTo(map);
});

}
});

export default Worldmap

我有这个componentDidMountgetInitialState首先;但我改为componentDidMount因为这应该在数据更改时触发组件的重新渲染。该文档指出If you need to load data from a remote endpoint, this is a good place to instantiate the network request. Setting state in this method will trigger a re-rendering. - 这在我的代码中并没有真正发生。也许我误解了它?

我可以理解该组件是否从未重新渲染,但如果在各个国家/地区发生鼠标悬停事件(例如,我在美国上空,并且颜色值发生变化,颜色值将更改为正确的值),这非常奇怪,但直到发生这种情况(或刷新整个网站))

最佳答案

看起来您正在将两种不同的渲染概念合并为一个。当使用 React 时,它被设计用来控制渲染过程;如果您引入另一个管理渲染的库,那么您可能会遇到问题。

React 设计为基于以下公式进行渲染:view = f(data),换句话说,您的 View 是数据的函数。在 React 中,数据通过 Props 或 State 来表达。在这种情况下,您没有使用 React 来管理 props 或状态,而是使用“传单”。您需要决定是使用 React 还是 Leaflet 来控制渲染,然后再决定。在这种情况下,最好将所有事情留给 Leaflet,因为它有自己的 API 用于渲染和管理交互。

关于javascript - 传单 w/React : Individual country color won't re-render when this. Prop 更新,仅当鼠标悬停时发生?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42903172/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com