MEANJS Get URL Parameters
问题 I'm running my app on localhost:3000/#!/, and trying to get URL parameters for use with Express, with no luck. I've created a new server routing file that contains the following: admin.server.routes.js 'use strict'; module.exports = function(app) { // Admin Routes var admin = require('../../app/controllers/admin.server.controller'); // Both of these routes work fine. app.route('/admin/test'). get(admin.populate). put(admin.update); // First attempt, didn't work. app.route('/admin/test').get