我是angularjs的新手,我使用$ http发送到服务器,php文件非常基本。我可以从回声中获取http检索数据。但从我试图使用返回获取数据。有什么想法吗?
$scope.SendData = function () {
// use $.param jQuery function to serialize data from JSON
var data = $.param({
action: "get_clients"
});
var config = {
headers : {
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8;'
}
}
$http.post('http://********.co.uk/*******/switchboard.php', data, config)
.success(function (data, status, headers, config) {
$scope.PostDataResponse = data;
console.log($scope.PostDataResponse);
})
.error(function (data, status, header, config) {
$scope.ResponseDetails = "Data: " + data +
"<hr />status: " + status +
"<hr />headers: " + header +
"<hr />config: " + config;
console.log($scope.ResponseDetails);
});
};
php文件非常简单,只是一个回音或回复。
<?php
echo "i am from the php file";
?>
<?php
return "i am from the php file";
?>
答案 0 :(得分:6)
echo
将文本等呈现到文档中,return
将函数/方法等数据返回到调用它的任何内容。如果你回复一个回复,它将呈现它(假设它是文本/数字等 - 而不是对象等)。
您可以在此处查看更多信息
What is the difference between PHP echo and PHP return in plain English?