从Angular UI-Router获取Express API中的URL参数

时间:2015-11-06 18:20:19

标签: angularjs node.js express angular-ui-router

我无法获取在Angular(ui路由器)中更改状态时传递的URL的参数:

.state('contact.detail', {
    url: '/:contactId',
    templateUrl: 'detail.html',
    controller: 'DetailController'
})

在Express中我定义了一个API,但问题在于从我从ui路由器传递的URL中获取param(上图)。

server.js

var express = require('express');
var mysql = require('mysql');
var url = require('url');

var app = express();

app.use('/', express.static('../app'));
app.use('/bower_components', express.static('../bower_components/'));

var server = require('http').createServer(app);

var bodyParser = require('body-parser');
app.jsonParser = bodyParser.json();
app.urlencodedParser = bodyParser.urlencoded({ extended: true });

//mysql connection setup
var connection = mysql.createConnection({
    host : "localhost",
    port: "3306",
    user : "root",
    password : "",
    database : "db",
    multipleStatements: true
});

app.get('/:id', app.urlencodedParser, function(req,res){

    var id = req.params.id;

    console.log(id); // => :id instead of value

    connection.query('SELECT * FROM contacts WHERE contactId = ?', [id], function (error, results) {        
        if(error) {
            throw error;
        }
        else { 
            res.end(JSON.stringify(results));
        }
    });
});

server.listen(3000, function () {
    'use strict';
});

在日志中我得到" :id "而不是真正的价值,例如" 45 "。

我可以手动访问API

enter image description here

请查看plunker状态详情。

1 个答案:

答案 0 :(得分:0)

由于你正在使用ui-router(或ngRoute),它是客户端路由,如果你想从你的服务器调用路由你必须使用$ http服务(或$ resource)进行http调用,比如:

 //this is a example not tested.
.controller('DetailController', function($scope, $stateParams,$http){
  console.log('Passed parameter contact id is:', $stateParams.contactId);

  $scope.selectedContactId = $stateParams.contactId;
  $http.get("localhost:3000/"+$stateParams.contactId)
         .success(function(data){
                //console.log(data)
         })
         .error(function(error,status){

         })
    });