从父反应访问子变量

时间:2019-11-26 02:51:04

标签: reactjs leaflet

我有 (function () { if (typeof window.CustomEvent === "function") return false; function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; })(); 和地图的子组件Parent。我正在将leaflet.js分配给Map内部的leafMap变量,并且可以从Map内部调用leafMap方法。 但是如何从父级调用“映射”方法?

Map

0 个答案:

没有答案