2017-06-05 52 views
0

晚上好!
我有從數據庫中獲取數據的問題。
還有項目Drupal + AngularJS。
沒有Drupal的,我能夠用PHP來從MySQL獲得的數據角: 文件的index.php在: `...使用Drupal爲AngularJS從MySQL DB獲取數據

var app = angular.module("myapp", []); 
    app.controller("usercontroller", function ($scope, $http) { 
     $scope.displayData = function() { 
      $http.get("select.php") 
       .success(function (data) { 
        $scope.names = data; 
       }); 
     } 
    });` 

和文件select.php在

<?php 
//select.php 

$connect = mysqli_connect("localhost", "root", "root", "testing"); 
$output = array(); 

$query = "SELECT * FROM tbl_user"; 

$result = mysqli_query($connect, $query); 
if(mysqli_num_rows($result) > 0) { 

    while($row = mysqli_fetch_array($result)) 
    { 
     $output[] = $row; 
    } 
    echo json_encode($output); 
} 


?> 

但是,如何用Drupal做到這一點?我如何創建像select.php這樣的頁面? 我不明白,請幫助我))

謝謝大家!

+0

我嘗試添加一個頁面下面的例子[頁編程(http://befused.com/drupal/page-programatically)但它沒有工作
GET http://testmapapi.hm:8888/select.tpl.php 403(禁止) –

回答