我希望将来自PHP脚本的变量中的JSON编码字符串传递给Javascript。 这都在同一个文件中。
PHP代码
$result = mysqli_query($db_connection, "SELECT * FROM feedback");
$finalResult = array();
while ($row = $result->fetch_assoc()){
$finalResult[] = $row;
}
$jsonoutput = json_encode($finalResult);
?>
Javascript代码
<script type="text/javascript">
function ctrlRead($scope, $filter) {
// init
$scope.sortingOrder = sortingOrder;
$scope.reverse = false;
$scope.filteredItems = [];
$scope.groupedItems = [];
$scope.itemsPerPage = 4;
$scope.pagedItems = [];
$scope.currentPage = 0;
$scope.items = []; // The string would go in here ideally.
// Rest of the code
我尝试回显输出,所以我知道json字符串出现了。我只需要将这个字符串传递给我提到的部分。有什么想法吗?