私は単純なHTMLファイルを1つ作成しました。フォームをMongoDBに接続したい。AngularJSとMongoDBの接続
「htmlファイル」と「JSファイル」が添付されています。
HTMLファイル
var app = angular.module('example',[]);
app.controller('TestController', function(){
\t $scope.user.name= "Hello";
\t $scope.user.mail = "[email protected]";
});
<html>
</!DOCTYPE html>
<html>
<head>
\t <title>TEST Page</title>
<!-- begin snippet: js hide: false console: true babel: false -->
</head>
<body ng-app="example" ng-controller="TestController">
<table>
<tr>
<td>Name:</td>
<td><input type="text" ng-model="user.name"></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="text" ng-model="user.mail"></td>
</tr>
<tr>
<td colspan="2"><button ng-click="getData()"></button></td>
</tr>
</table>
</body>
</html>
のようにサーバー側の言語を使用する必要があります。それを行うPHP。 $ HTTPを使用してサーバー側の言語に接続する必要があります –
サーバー側のコードを記述するか、firebaseやループバックなどのBAASを使用する必要があります –
コードスニペットを実行して説明を具体化できますか? –