Angular+NodeJs+MongoDB搭建前后端程序

Posted jht_newbie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angular+NodeJs+MongoDB搭建前后端程序相关的知识,希望对你有一定的参考价值。

两种get请求传参方式

//angular 前端get请求
this.client.get(‘http://localhost:3000/id/tom‘).subscribe(data => {
      console.log(data);
    });

//nodejs后端响应
app.get("/id/:name", function (request, response) {
    var heroName = request.params.name;
    //debugger;
    console.log("name:" + request.params.name);
    heros.find({name:heroName},function(err,heros){
      if(err) return console.error(err);
      response.send(heros);
    });
    
});

另一种:

// client: HttpClient : @angular/common/http 
this.client.get(‘http://localhost:3000/id‘, { params: { name: ‘tom‘ } }).subscribe(data => {
      console.log(data);
    });

//var express = require("express");  var app = express();
app.get("/id/", function (request, response) {
    var heroName = request.query.name;  
    console.log("name:" + request.query.name);
    heros.find({name:heroName},function(err,heros){
      if(err) return console.error(err);
      response.send(heros);
    });
    
});

通过Mongoose连接MongoDB,并进行查询和保存数据:

var mongoose=require(‘mongoose‘);
mongoose.connect(‘mongodb://localhost/hero‘,{config:{autoIndex:false}}); // 进入mongo命令行 show dbs 将看到hero
var db = mongoose.connection;
db.on(‘error‘, console.error.bind(console, ‘connection error:‘));
db.once(‘open‘, function() {
  console.log("connection success");
});

var heroSchema = new  mongoose.Schema({
  name:String
});
heroSchema.set(‘autoIndex‘,false);

heroSchema.methods.display = function () {
  console.log(this.name);
}

var Hero = mongoose.model(‘heros‘, heroSchema); //show collections 将看到heros

// 通过model 查询; 在mongo命令行 使用 db.heros.find({name:‘tom‘})
Hero.find({name:‘tom‘},function(err,heros){
      if(err) return console.error(err);
      console.log(heros);
});

//通过model创建theHero并保存到mongodb 
var theHero = new Hero ({ name: ‘tom‘ });
theHero.save(function (err, data) {
    if (err) return console.error(err);
 });
    

 另外,解决跨域问题:

//后台设置跨域访问
app.all(‘*‘, function(req, res, next) {
    res.header("Access-Control-Allow-Origin", "*");
    res.header("Access-Control-Allow-Headers", "X-Requested-With");
    res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
    res.header("X-Powered-By",‘ 3.2.1‘)
    res.header("Content-Type", "application/json;charset=utf-8");
    next();
});

 启动mongodb:

mongod --dbpath d:/test

启动nodejs后端服务,通过nodemon启动,修改test.js代码后自动生效:

nodemon test.js   

 

 

 

参考:

angular官方文档HTTPClient

express官方文档request参数

mongoose官方文档

nodejs调试

以上是关于Angular+NodeJs+MongoDB搭建前后端程序的主要内容,如果未能解决你的问题,请参考以下文章

使用 Angular 2 服务、mongoDB 和 NodeJs 编辑对象

Angular/ MongoDB/ NodeJs:从一个域自动登录到另一个域

从 mongoDB 获取数据并使用 Angular 和 NodeJs 在屏幕上打印

在后端使用NodeJS的Put方法不更新Angular7中的MongoDB

Angular 使用错误的 URL 使用 NodeJS 查询 MongoDB

如何在 javascript (ionic | Angular | NodeJS | MongoDB) 中将包含对象的数组展平和减少为逗号分隔的字符串