在我的AngularJS应用程序中,在点击提交按钮后,输入到表单中的数据不会存储在MySQL数据库中。成功提交表单数据后的警报表明它正在运行。
此外,在点击提交按钮后,我希望应用程序继续进行下一个视图(#/ setup-step2) - 但它仍然保留在第1步。
html partial(#/ setup-step1):
<form ng-submit="submitForm1()">
Job title: <input type="text" name="jobtitle" ng-model="formData1.jobtitle">
Vacancy ID: <input type="text" name="vacancyid" ng-model="formData1.vacancyid">
<button type="submit" class="animatedbutton"> Proceed </button>
</form>
controller.js:
var ctr = angular.module('myApp.controller', []);
ctr.controller
('Step1Controller', ['$scope', '$routeParams', '$http', function($scope, $routeParams, $http){
$scope.formData1 = {};
$scope.submitForm1 = function() {
$http({
method: 'POST',
url: 'php/setup-step1.php',
data: $.param($scope.formData1),
headers: { 'Content-Type': 'application/x-www-form-urlencoded'}
})
.success(function(data){
console.log(data);
alert("It worked");
})
.error(function(data) {
console.log(data);
alert("It didn't work");
})
}
}]);
文件夹/ php中的setup-step1.php:
<?php
include_once('db.php');
// Check connection
if(mysqli_connect_errno())
{echo '<p>Connection to MySQL server failed: '.mysqli_connect_error().'</p>';}
else
{echo '<p>Connection to MySQL server successful.</p>';}
$_POST = json_decode(file_get_contents("php://input"), true);
if (empty($_POST['jobtitle']))
{$errors['jobtitle'] = 'Job title is required.';}
else {
// Escape user inputs for security
$jobtitle = $_POST['jobtitle'];
$vacancyid = $_POST['vacancyid'];
$data = "INSERT INTO campaign (Job_title, Job_id) VALUES ('$jobtitle','$vacancyid')";mysql_query("INSERT INTO campaign (Job_title, Job_id) VALUES ('$jobtitle', '$vacancyid')");}
if ($connect->query($data) === TRUE)
{$conn->close();}
else
{echo "Error: " . $sql . "<br>" . $conn->error;}
exit();
?>
答案 0 :(得分:0)
首先, 确保在对服务器执行任何请求之前启用了cors。当您使用angularjs时,这通常意味着您向服务器发出了cors请求。如果您没有启用cors选项,则无法从服务器调用任何方法因为不允许。
其次, 只需将php代码保存在你的setup-step1.php中。你不需要任何HTML代码,因为它只返回你的requet的结果。
第三, 据我所知,您无法更改erver的网页位置,因为服务器统治和网站域名不同。您需要将用户重定向到angularjs中的另一个页面。您可以使用$ location或$ state找到在angularjs中重定向的方法。
答案 1 :(得分:0)
我自己找到了答案。问题是不正确的php和mysql语法。以现在的方式更新了代码。