私はリーフレットマップコンポーネントを作成しています、これはplunkerの例です
http://plnkr.co/edit/LkghwOcby49XESdGb782?p=preview
ここにコードがあります
leaflet.jsx
/** @jsx React.DOM */
/*jshint indent: 2, node: true, nomen: true, browser: true*/
/*global React */
'use strict';
module.exports = React.createClass({
getInitialState: function () {
return {
map: {}
};
},
componentDidMount: function() {
var map = L.map('map').setView([51.505, -0.09], 13);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
this.setState({map: map});
},
modifyMap: function (method, options) {
this.setState({
map : this.state.map[method](options.latLong, options.zoom, options.zoom_options)
});
},
render: function () {
return (
/* jshint ignore:start */
<div id="map"></div>
/* jshint ignore:end */
);
}
});
map.html
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>Leafy</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and Apple-touch-icon.png in the root directory -->
<!-- build:css(.tmp) styles/main.css -->
<style>
#map {
height: 200px;
}
</style>
<link rel="stylesheet" href="//cdn.leafletjs.com/leaflet-0.7.3/leaflet.css">
<!-- endbuild -->
</head>
<body>
<!--[if lt IE 9]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container">
<div id="leaflet"></div>
</div>
<!-- build:js scripts/vendor.js -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/Twitter-bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.11.0/react-with-addons.min.js"></script>
<script src="//cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<!-- endbuild -->
<!-- build:js scripts/main.js -->
<script src="leaflet.jsx"></script>
<!-- endbuild -->
</body>
</html>
ブラウザコンソールまたはページ上のスクリプトから直接modifyMapメソッドを呼び出してみます。静的を使用しようとしましたが、modifyMapメソッドを含むオブジェクトが見つかりません。この方法を見つける簡単な方法はありますか、またはReactjsでこれを行うより良い方法はありますか?別のファイルでmodule.exportsを使用する代わりにReactクラスがこのページで作成された場合、これが可能であることも知っています。別の方法があるといいのですが!助けてください!
コンポーネントのメソッドを呼び出す場合instanceは、コンポーネントのライフサイクルのある時点で使用できるようにする必要があります。たとえば、ページにそのようなマップが1つしかない場合は、次のようにすることができます。
componentDidMount: function() {
// ...
this.setState({map: map});
window.map = this;
}
これで、グローバルmap
変数からコンポーネントにアクセスできます。
標準の免責事項:これはときどき役立つ場合がありますが、特にデバッグの場合、頻繁に行う場合は、Reactの使用を再検討する必要があります。つまり、通常、コンポーネントにプロパティを渡して、コンポーネントが使用するようにします。自身を更新します。
コンポーネントメソッドを外部的に呼び出す:
var app= React.renderComponent( <app/>, document.getElementById('app') );
app.modifyMap(arg1, arg2) //or anything else
または別のコンポーネントから:
componentDidMount: function(){
this.refs.myApp.modifyMap(arg1, arg2) // Etc.
},
render: function(){
return <div>
<App ref='myApp'/>
</div>
}
butあなたの 'modifyMap'メソッドは反作用の反考えです! this.propsのみに従ってmapに影響を与えるには、componentDidMountを使用し、それらをMap parrentコンポーネントで変更します。 Mapインスタンスは次のようになります
<Map center={[51.505, -0.09]} zoom={13} [...] />