J'ai un fichier texte à la racine de mon application web. http://localhost/foo.txt et je voudrais le charger dans une variable en javascript en groovy je ferais ceci :
def fileContents = 'http://localhost/foo.txt'.toURL().text;
println fileContents;
Comment puis-je obtenir un résultat similaire en javascript ?