“Datei_get_Contents in JavaScript” Code-Antworten

Datei_get_Contents in JavaScript

// You can use Fetch to get data.
fetch('http://example.com') // url here
  .then((response) => {
    return response.json(); // replace .json() to .text() for plain text
  })
  .then((daat) => {
    console.log(daat);
  });
Undefined

Datei_get_Contents in JavaScript

//Or You can use php.js library. Which allow some php functions for javascript. 
//file_get_contents() function one of them.

<script>
	var data = file_get_contents('Your URL');
</script>

//You can find more info about php.js : http://phpjs.org/
Noob Learner

Ähnliche Antworten wie “Datei_get_Contents in JavaScript”

Fragen ähnlich wie “Datei_get_Contents in JavaScript”

Weitere verwandte Antworten zu “Datei_get_Contents in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen