REACT get country react - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

get client country react


 714

REACT


2

<!DOCTYPE html>
<html>
<head>
</head>
<body>

<div id="country-div"></div>

<script src="https://fb.me/react-0.14.3.min.js "></script>
<script src="https://fb.me/react-dom-0.14.3.min.js "></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/babel">

var MyCountry = React.createClass({
render: function() {
return (
<p>{this.props.a}</p>
);
}
});


// using jquery ajax
$.get("https://geoip-db.com/json/geoip.php?jsonp=?", function(response) {
var a;
var b = response.country_name;

ReactDOM.render(
<MyCountry a={b}/>,
document.getElementById('country-div')
);

}, "json");

</script>

</body>
</html>


By        
The power of the user (%)
6%

REACT


0

// npm install node-fetch --save

import React from 'react';
import fetch from 'node-fetch';

class App extends React.Component {
constructor() {
super();

this.state = {
data: []
}

this.setStateHandler = this.setStateHandler.bind(this);
};

setStateHandler() {

fetch('http://freegeoip.net/json/')
.then(res => res.json())
.then(json => this.setState({data: json.country_name}))

};

render() {
return (
<div>
<button onClick = {this.setStateHandler}>Click</button>
<h2>{this.state.data}</h2>
</div>
);
}
}

export default App;


By        
The power of the user (%)
10%



The most helpful REACT solutions

How to get client ip address using react ?How to get client ip address using react ?REACT

Click to see more ...

  19.2K     421

how to get the type of a device using react ?how to get the type of a device using react ?REACT

Click to see more ...

  2.1K     220

create digital clock reactcreate digital clock reactREACT

Click to see more ...

  1.6K     141

country dropdown using reactcountry dropdown using reactREACT

Click to see more ...

  1.1K     127

create alarm clock using reactcreate alarm clock using reactREACT

Click to see more ...

  5.1K     116

How to get latitude and longitude using react/javascript ?How to get latitude and longitude using react/javascript ?REACT

Click to see more ...

  950     108

get client country reactget client country reactREACT

Click to see more ...

  714     82

get ip address reactget ip address reactREACT

Click to see more ...

  939     81

time ago reacttime ago reactREACT

Click to see more ...

  533     74

detect mobile device reactdetect mobile device reactREACT

Click to see more ...

  525     58

Welcome aboard!
We are happy you are here and
wish you good net-raft!