我喜欢将 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->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));
?>
学生.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'];
}
}
?>