我有一个带有按钮的HTML页面。当我单击该按钮时,我需要调用REST Web服务API。我试着到处搜索。毫无头绪。有人可以给我一个领导/ Headstart吗?非常感谢。
答案 0 :(得分:95)
您的Javascript:
function UserAction() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
alert(this.responseText);
}
};
xhttp.open("POST", "Your Rest URL Here", true);
xhttp.setRequestHeader("Content-type", "application/json");
xhttp.send("Your JSON Data Here");
}
你的按钮动作::
<button type="submit" onclick="UserAction()">Search</button>
欲了解更多信息,请查看以下link(更新时间为2017/11)
答案 1 :(得分:56)
我很惊讶,没有人提到新的Fetch API,在撰写本文时,除IE11之外,所有浏览器都支持该API。它简化了您在其他许多示例中看到的XMLHttpRequest语法。
API包含a lot more,但以fetch()
方法开头。它有两个参数:
简单的GET:
const userAction = async () => {
const response = await fetch('http://example.com/movies.json');
const myJson = await response.json(); //extract JSON from the http response
// do something with myJson
}
重新创建上一个top answer,即POST:
const userAction = async () => {
const response = await fetch('http://example.com/movies.json', {
method: 'POST',
body: myBody, // string or object
headers:{
'Content-Type': 'application/json'
}
});
const myJson = await response.json(); //extract JSON from the http response
// do something with myJson
}
答案 2 :(得分:17)
这是另一个使用json进行身份验证的Javascript REST API调用:
<script type="text/javascript" language="javascript">
function send()
{
var urlvariable;
urlvariable = "text";
var ItemJSON;
ItemJSON = '[ { "Id": 1, "ProductID": "1", "Quantity": 1, }, { "Id": 1, "ProductID": "2", "Quantity": 2, }]';
URL = "https://testrestapi.com/additems?var=" + urlvariable; //Your URL
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = callbackFunction(xmlhttp);
xmlhttp.open("POST", URL, false);
xmlhttp.setRequestHeader("Content-Type", "application/json");
xmlhttp.setRequestHeader('Authorization', 'Basic ' + window.btoa('apiusername:apiuserpassword')); //in prod, you should encrypt user name and password and provide encrypted keys here instead
xmlhttp.onreadystatechange = callbackFunction(xmlhttp);
xmlhttp.send(ItemJSON);
alert(xmlhttp.responseText);
document.getElementById("div").innerHTML = xmlhttp.statusText + ":" + xmlhttp.status + "<BR><textarea rows='100' cols='100'>" + xmlhttp.responseText + "</textarea>";
}
function callbackFunction(xmlhttp)
{
//alert(xmlhttp.responseXML);
}
</script>
<html>
<body id='bod'><button type="submit" onclick="javascript:send()">call</button>
<div id='div'>
</div></body>
</html>
答案 3 :(得分:7)
$("button").on("click",function(){
//console.log("hii");
$.ajax({
headers:{
"key":"your key",
"Accept":"application/json",//depends on your api
"Content-type":"application/x-www-form-urlencoded"//depends on your api
}, url:"url you need",
success:function(response){
var r=JSON.parse(response);
$("#main").html(r.base);
}
});
});
答案 4 :(得分:6)
我认为添加if(this.readyState == 4&amp;&amp; this.status == 200)等待更好:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
// Typical action to be performed when the document is ready:
var response = xhttp.responseText;
console.log("ok"+response);
}
};
xhttp.open("GET", "your url", true);
xhttp.send();
答案 5 :(得分:0)
通常的方法是使用PHP和Ajax。但是根据您的要求,下面将可以正常工作。
<body>
https://www.google.com/controller/Add/2/2<br>
https://www.google.com/controller/Sub/5/2<br>
https://www.google.com/controller/Multi/3/2<br><br>
<input type="text" id="url" placeholder="RESTful URL" />
<input type="button" id="sub" value="Answer" />
<p>
<div id="display"></div>
</body>
<script type="text/javascript">
document.getElementById('sub').onclick = function(){
var url = document.getElementById('url').value;
var controller = null;
var method = null;
var parm = [];
//validating URLs
function URLValidation(url){
if (url.indexOf("http://") == 0 || url.indexOf("https://") == 0) {
var x = url.split('/');
controller = x[3];
method = x[4];
parm[0] = x[5];
parm[1] = x[6];
}
}
//Calculations
function Add(a,b){
return Number(a)+ Number(b);
}
function Sub(a,b){
return Number(a)/Number(b);
}
function Multi(a,b){
return Number(a)*Number(b);
}
//JSON Response
function ResponseRequest(status,res){
var res = {status: status, response: res};
document.getElementById('display').innerHTML = JSON.stringify(res);
}
//Process
function ProcessRequest(){
if(method=="Add"){
ResponseRequest("200",Add(parm[0],parm[1]));
}else if(method=="Sub"){
ResponseRequest("200",Sub(parm[0],parm[1]));
}else if(method=="Multi"){
ResponseRequest("200",Multi(parm[0],parm[1]));
}else {
ResponseRequest("404","Not Found");
}
}
URLValidation(url);
ProcessRequest();
};
</script>
答案 6 :(得分:0)
在尝试将任何内容放置在网站的前端之前,我们先打开API的连接。我们将使用XMLHttpRequest对象来实现,这是一种打开文件并发出HTTP请求的方法。
我们将创建一个请求变量,并为其分配一个新的XMLHttpRequest对象。然后,我们将使用open()方法打开一个新连接-在参数中,我们将请求的类型指定为GET以及API端点的URL。请求完成,我们可以访问onload函数中的数据。完成后,我们将发送请求。
//创建一个请求变量,并为其分配一个新的XMLHttpRequest对象。
var request = new XMLHttpRequest()
// Open a new connection, using the GET request on the URL endpoint
request.open('GET', 'https://ghibliapi.herokuapp.com/films', true)
request.onload = function () {
// Begin accessing JSON data here
}
}
// Send request
request.send()
答案 7 :(得分:-1)
毫无疑问,最简单的方法使用HTML中的不可见FORM元素来指定所需的REST方法。然后,可以使用JavaScript将参数插入到input type=hidden
值字段中,并且可以使用一行JavaScript从按钮单击事件侦听器或onclick事件提交表单。这是一个示例,假定REST API在文件REST.php中:
<body>
<h2>REST-test</h2>
<input type=button onclick="document.getElementById('a').submit();"
value="Do It">
<form id=a action="REST.php" method=post>
<input type=hidden name="arg" value="val">
</form>
</body>
请注意,此示例将用页面REST.php的输出替换页面。 如果您希望在当前页面上没有可见效果的情况下调用API,我不确定如何修改此设置。但这很简单。