这是我的表格
<form>
<input class="text_box1" type="text" name="email" ng-model="forget.email" >
<button style="width:auto" class="sign_up" ng-click="doForget(forget)">Get a Password</button>
</form>
我的app.js
内有
.when('/forget', {
title: 'forget',
templateUrl: 'resources/views/forget.php',
controller: 'authCtrl'
})
在authCtrl
控制器
$scope.doForget = function (customer) {
Data.post('eloquent.php', {
customer: customer
}).then(function (results) {
if (results == "1")
{
$location.path('login');
}
});
};
我打电话给eloquent.php
但是如何才能从forget.php
获取电子邮件的价值并发送给eloquent.php
?
答案 0 :(得分:1)
您可以通过
获取forgot.email
的值
forgotemail = $scope.forgot.email;
然后将其存储在本地存储中并在那里检索
localStorage.setItem("forgotemail ", "forgotemail ");
然后通过
进行通话$http.post('eloquent.php', {forgotmail: forgotmail}).then(function (results)
{
//your other code here
}