如何从我构建的http api中获取文本?所以我构建了一个像这样http://IPADDRESS/getText/hkjfskhfkjdshfkj的http api,它响应了#34; HI"或类似的东西,所以我的问题是如何调用api然后使用javascript将其读入我的网页上的变量?
服务器也是用nodejs编写的。
答案 0 :(得分:0)
您可以提供Rest服务,或只是制作一个regular expression,可以从window.location.href
答案 1 :(得分:0)
您可以使用ajax请求执行此操作。
jQuery示例:
var someVariable = ""; // variable is empty at start
$.ajax({
type: 'GET',
url: 'http://IPADDRESS/getText/hkjfskhfkjdshfkj'
}).done( function (responseText) {
// responseText contains 'HI'or something like that
someVariable = responseText;
alert(someVariable);
});