我想问你如何从cordova应用程序调用REST服务。我使用MongoDB作为存储数据。我想将index.html中的数据添加到MongoDB。我可以从浏览器访问url localhost:28017 / AlitaDB / test /并显示来自MongoDB的数据。 代码index.html
的index.html
<!DOCTYPE html>
<html>
<head>
<title>Manage Contact</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.4.8.js"></script>
<script src="js/jquery-1.11.1.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("#submit").click(function insertContact(){
$.post("http://localhost:28017/AlitaDB/test/",
$("#insertContact :input").serializeArray(),
function(json){
if(json== null || json == 'undefined')
alert("Insert failed");
else
alert("Insert successful");
});
alert('asdas');
return false;
});
});
</script>
</head>
<body>
<h3>Insert Contact</h3>
<form id="insertContact">
<table>
<tr>
<td>Contact Id</td>
<td><input type="text" name="contactId" /></td>
</tr>
<tr>
<td>First Name</td>
<td><input type="text" name="firstName" /></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="lastName" /></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="email" /></td>
</tr>
<tr>
<td><input type="submit" id="submit" name="submit" value="Submit" /></td>
</tr>
</table>
</form>
</body>
</html>
答案 0 :(得分:0)
MongoDB要求您编写RESTful接口以使用它们的数据库,因为它们没有提供数据库,尽管有一些包装器/插件可用(Does MongoDB have a native REST interface?)。 www.Parse.com提供替代服务。我不是附属的,但我希望使用他们的无模式数据库产品。
使用一些数据创建GameScore记录的AngularJS示例代码:
$http({
url: 'https://api.parse.com/1/classes/GameScore',
method: 'POST',
headers: {
'X-Parse-Application-Id': 'APPLICATION_ID',
'X-Parse-REST-API-Key': 'REST_API_KEY',
},
data: {"score":1337,"playerName":"Ian Brown","cheatMode":false}
});
的CURL示例