您好,今天我有简单的代码 Nodejs 表达,可以作为 rest api 工作。当我使用邮递员将请求作为 get 方法发送时,它可以工作,如下面的代码。但我尝试在客户端使用它。它不起作用。所以你能帮忙找出错误吗?
// simple rest api
router.get('/getuser', function(req, res, next) {
var connection = getcon();
res.setHeader('Content-Type', 'application/json');
connection.query('SELECT username,password from tbuser', function (error, results, fields) {
if (error) throw error;
console.log('Object : ', JSON.stringify(results));
res.send(JSON.stringify(results));
});
connection.end();
});
// client code
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("http://localhost:3000/users/getuser")
.then(function(response) {
$scope.myWelcome = response.data;
});
});
</script>