私はangularjsを使用してmysqlテーブルにレコードを挿入したいと思います。表:製品product_id、名前、説明。
2つのテキストフィールドと保存ボタンが必要です。保存ボタンをクリックすると、レコードがmysqlテーブルに挿入されます。私は次のリンクを参照しました:
しかし、すべて無駄です...
index.html
<html ng-app>
<head>
<script src="../angular-1.0.1.min.js"></script>
<script src="js/controllers.js"></script>
</head>
<body>
<ul ng:controller="ProductListCtrl">
<li ng:repeat="product in products">
{{product.name}}
</li>
</ul>
<form method = 'post'>
Name : <input type = 'text' name = 'txtName'/>
Description : <input type = 'text' name = 'txtDescription'/>
<button ng:click="saveProduct()">New Product</button>
<div id="content">
<ng:view></ng:view>
</div>
</form>
</body>
</html>
saveProduct()メソッドはどこに記述すればよいですか?また、何を書き込む必要がありますか?
mysqlにangularjsからレコードを追加するにはどうすればよいですか?