我喜欢将ID参数传递给php,以便我可以在脚本中检索特定的sql数据库行。
ID参数在URL中可用,例如(http://localhost/RoutingAngularJS/index.php#/students/1)。最后一位数字1是数据库中的行ID,以便可以检索该行中人员的信息。
$ routeParams在控制器中用作
var app = angular.module("Demo", ["ngRoute"])
.config(function($routeProvider){
$routeProvider
.
.when("/students/:id", {
templateUrl:"Templates/studentDetails.html",
controller:"studentDetailsController"
})
})
.controller("studentDetailsController", function ($scope, $http, $routeParams) {
$http({
url:"api/ReadOneStudent.php",
params:{id:$routeParams.id},
method: "get"
}).then(function(response){
$scope.student = response.records;
})
});
我的ReadOneStudent.php是
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
// include database and object files
include_once 'database.php';
include_once 'Students.php';
// instantiate database and product object
$database = new Database();
$db = $database->getConnection();
// initialize object
$student = new Students($db);
// get id of product to be edited
//$data = json_decode(file_get_contents("php://input"));
// set ID property of product to be edited
$student->id = ????;
// read the details of product to be edited
$student->readOneStudent();
// create array
$student_arr[] = array(
"id" => $student->id,
"name" => $student->name,
"gender" => $student->gender,
"city" => $product->city
);
echo '{"records":[' . $student_arr . ']}';
// make it json format
//print_r(json_encode($student_arr));
?>
我喜欢将id传递给$ student-&gt; id,现在是????。
由于
编辑:
var app = angular.module("Demo", ["ngRoute"])
.config(function($routeProvider){
$routeProvider
.
.when("/students/:id", {
templateUrl:"Templates/studentDetails.html",
controller:"studentDetailsController"
})
})
.controller("studentDetailsController", function ($scope, $http, $routeParams) {
$http({
url:"api/ReadOneStudent.php",
params:$routeParams,
method: "get"
}).then(function(response){
$scope.student = response.data;
})
});
ReadOneStudent.php
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
// include database and object files
include_once 'database.php';
include_once 'Students.php';
// instantiate database and product object
$database = new Database();
$db = $database->getConnection();
// initialize object
$student = new Students($db);
// get id of product to be edited
//$data = json_decode(file_get_contents("php://input"));
// set ID property of product to be edited
if (!isset($_GET['id'])) {
http_response_code(400); // bad request
exit;
}
$student->id = $_GET['id'];
// read the details of product to be edited
$found = $student->readOneStudent(); // assuming this returns something useful
if (!$found) {
http_response_code(404);
exit;
}
// create array
// Seeing as this is called "read ONE student", why return an array?
header('Content-type: application/json');
echo json_encode([
'id' => $student->id,
'name' => $student->name,
'gender' => $student->gender,
'city' => $student->city
]); // maybe you can even just use json_encode($student)
exit;
// make it json format
//print_r(json_encode($student_arr));
?>
Students.php
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
class Students{
// database connection and table name
private $conn;
private $table_name = "tblStudents";
// object properties
public $id;
public $name;
public $gender;
public $city;
// constructor with $db as database connection
public function __construct($db){
$this->conn = $db;
}
public function readOneStudent(){
// query to read single record
$query = "SELECT
id, name, gender, city
FROM
" . $this->table_name . "
WHERE
id = ?
LIMIT
0,1";
// prepare query statement
$stmt = $this->conn->prepare( $query );
// bind id of product to be updated
$stmt->bindParam(1, $this->id);
// execute query
$stmt->execute();
// get retrieved row
$row = $stmt->fetch(PDO::FETCH_ASSOC);
// set values to object properties
$this->name = $row['name'];
$this->gender = $row['gender'];
$this->city = $row['city'];
}
}
?>
答案 0 :(得分:1)
尝试使用$_GET['id']
通过PHP中的 id 键访问GET
答案 1 :(得分:1)
你在这里做了一些奇怪的事情。首先,你的PHP
Students.php - 让readOneStudent()
返回有用的内容
if (!$row = $stmt->fetch(PDO::FETCH_ASSOC)) {
return false;
}
// set values to object properties
$this->name = $row['name'];
$this->gender = $row['gender'];
$this->city = $row['city'];
$stmt->closeCursor();
return true;
ReadOneStudent.php - 回复有用的状态和JSON
if (!isset($_GET['id'])) {
http_response_code(400); // bad request
exit;
}
$student->id = $_GET['id'];
if (!$student->readOneStudent()) {
http_response_code(404);
exit;
}
// Seeing as this is called "read ONE student", why return an array?
header('Content-type: application/json');
echo json_encode([
'id' => $student->id,
'name' => $student->name,
'gender' => $student->gender,
'city' => $student->city
]); // maybe you can even just use json_encode($student)
exit;
接下来,我将在路由配置中使用resolve
属性
$routeProvider.when("/students/:id", {
templateUrl: "Templates/studentDetails.html",
controller:"studentDetailsController",
resolve: {
student: function($routeParams, $http) {
return $http.get('api/ReadOneStudent.php', {
params: {id: $routeParams.id}
}).then(function(response) {
return response.data
});
}
}
})
最后在你的控制器中
.controller('studentDetailsController', function($scope, student) {
$scope.student = student;
})