gpt4 book ai didi

php - 使用 angularjs 使用 where 子句从数据库获取数据

转载 作者:行者123 更新时间:2023-11-29 20:01:20 25 4
gpt4 key购买 nike

我想使用 angularjs 从 mysql 数据库加载数据。

这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上

我想获取这个值并通过 angularjs 传递给 php 脚本,以便根据带有 where 子句的用户名从表中获取数据

这是我的 php 脚本

<?php

include_once 'connect.php';
$data = json_decode(file_get_contents("php://input"));


$statement = $conn->prepare('SELECT MessageId, Subject, MessageContent, CONCAT(Date, " , ", Time) AS Date, FromUser, ToUser, MessageType, File, FileName FROM messages where MessageType = "Broadcast" or ToUser=:UserName order by MessageId desc');
$statement->execute(array(
'UserName' => $data->UserCookie
));

while($row = $statement->fetch()) {
$data[] = $row;
}

print json_encode($data);
?>

这是我的 Angular 脚本

var app = angular.module('Library', ["ngCookies"]);
app.controller('LibraryController', function($scope, $http, $interval, $cookies) {

//get cookie user name
$scope.UserCookie = $cookies.get('cookieUserName');

//set cookie user name
$scope.setCookie = function(val){
$cookies.put('cookieUserName', val);
}



//display messages
$scope.loadMessages = function() {
$http.post('selectMessages.php',{'UserName': $scope.UserCookie})
.success(function(data) {
$scope.Messages = data;
})
}

//display messages at an interval of 1 seconds
$interval($scope.loadMessages, 1000);

});

这是我的主页

<!DOCTYPE html ng-app="Library" ng-controller="LibraryController">
<html>
<head>
<title></title>
</head>
<body ng-init="loadMessages()">
<div class="form-group">
<label for="Subject">User</label>
<input type="text" ng-model="UserCookie" name="UserCookie" class="form-control" id="UserCookie" required="required"></input>
</div>


<input type="search" class="form-control" ng-model="searchMessage" placeholder="Search"> <br />
<table class="table table-hover">
<thead>
<tr>
<th>Message (Sender)</th>
</tr>
</thead>
<tbody>

<tr ng-click="selectMessage(message.MessageId, message.MessageContent, message.Date, message.Time, message.File)" onclick="showCommentDialog()" style="font-size: 16px" ng-repeat="message in Messages | filter:searchMessage | limitTo:20">
<td>{{ message.Subject }} (<span style="color:green"> {{ message.FromUser }})</span></td>
<td>
<button class="btn btn-success" ng-click="selectMessage(message.MessageId, message.MessageContent, message.Date, message.Time, message.File)" onclick="showCommentDialog()" > view </button>

</td>
</tr>
</tbody>
</table>

</body>
</html>

这是我得到的错误 Error from browser console请问我做错了什么。帮忙!

最佳答案

参见this link求助。您的 ng-repeat 中有重复的键。

关于php - 使用 angularjs 使用 where 子句从数据库获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40528061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com