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);
}); });
post:
//angular发送post请求
this.client.post<Hero>('http://localhost:3000/hero', hero)
.subscribe(data => {
console.log(data);
}); //后台处理post请求
app.post("/hero", function (request, response) {
var theHero = new heros({name:'',race:[],price:});
console.log('theHero:' + theHero);
// theHero.save(function (err, data) {
// if (err) return console.error(err);
// response.send("post:" + theHero);
// }); });
通过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);
});
另外,解决跨域与请求带HttpHeaders报错问题:
//后台设置跨域访问
app.all('*', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Credentials", "true");
res.header("Access-Control-Allow- Methods","PUT,POST,GET,DELETE,OPTIONS");
res.header("Access-Control-Allow-Headers", "Content-Type,Access-Token");
res.header("Access-Control-Expose-Headers","*");
next(); //必须有
});
启动mongodb:
mongod --dbpath d:/test
启动nodejs后端服务,通过nodemon启动,修改test.js代码后自动生效:
nodemon test.js
后台代码:
var express = require("express");
var app = express();
var bodyParser = require('body-parser');
var multer = require('multer');
var upload = multer(); app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended:true})); var mongoose=require('mongoose');
mongoose.connect('mongodb://localhost/hero',{config:{autoIndex:false}});
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,
race:[String],
price:Number
}); heroSchema.set('autoIndex',false); heroSchema.methods.display = function () {
var msg = this.name + ":" + this.race.join(",") + ":" + this.price;
console.log(msg);
} var heros = mongoose.model('heros', heroSchema); //设置跨域访问
app.all('*', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Credentials", "true");
res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
res.header("Access-Control-Allow-Headers", "Content-Type,Access-Token");
res.header("Access-Control-Expose-Headers","*");
// res.header("X-Powered-By",' 3.2.1')
//res.header("Content-Type", "application/json;charset=utf-8");
next();
}); 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);
}); }); 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);
}); }); app.post("/hero",upload.array(), function (request, response) {
var param = request.body;
const theHero = new heros({name:param.name,race:param.race,price:param.price});
console.log('theHero:' + param.name); theHero.save(function (err, data) {
if (err) return console.error(err);
response.send({'data':'ok'});
}); }); app.listen(3000);
参考:
Angular+NodeJs+MongoDB搭建前后端程序的更多相关文章
- 利用grunt-contrib-connect和grunt-connect-proxy搭建前后端分离的开发环境
前后端分离这个词一点都不新鲜,完全的前后端分离在岗位协作方面,前端不写任何后台,后台不写任何页面,双方通过接口传递数据完成软件的各个功能实现.此种情况下,前后端的项目都独立开发和独立部署,在开发期间有 ...
- List多个字段标识过滤 IIS发布.net core mvc web站点 ASP.NET Core 实战:构建带有版本控制的 API 接口 ASP.NET Core 实战:使用 ASP.NET Core Web API 和 Vue.js 搭建前后端分离项目 Using AutoFac
List多个字段标识过滤 class Program{ public static void Main(string[] args) { List<T> list = new List& ...
- 【手摸手,带你搭建前后端分离商城系统】01 搭建基本代码框架、生成一个基本API
[手摸手,带你搭建前后端分离商城系统]01 搭建基本代码框架.生成一个基本API 通过本教程的学习,将带你从零搭建一个商城系统. 当然,这个商城涵盖了很多流行的知识点和技术核心 我可以学习到什么? S ...
- GraphQL + React Apollo + React Hook + Express + Mongodb 大型前后端分离项目实战之后端(19 个视频)
GraphQL + React Apollo + React Hook + Express + Mongodb 大型前后端分离项目实战之后端(19 个视频) GraphQL + React Apoll ...
- 【手摸手,带你搭建前后端分离商城系统】02 VUE-CLI 脚手架生成基本项目,axios配置请求、解决跨域问题
[手摸手,带你搭建前后端分离商城系统]02 VUE-CLI 脚手架生成基本项目,axios配置请求.解决跨域问题. 回顾一下上一节我们学习到的内容.已经将一个 usm_admin 后台用户 表的基本增 ...
- 【手摸手,带你搭建前后端分离商城系统】03 整合Spring Security token 实现方案,完成主业务登录
[手摸手,带你搭建前后端分离商城系统]03 整合Spring Security token 实现方案,完成主业务登录 上节里面,我们已经将基本的前端 VUE + Element UI 整合到了一起.并 ...
- ASP.NET Core 实战:使用 ASP.NET Core Web API 和 Vue.js 搭建前后端分离项目
一.前言 这几年前端的发展速度就像坐上了火箭,各种的框架一个接一个的出现,需要学习的东西越来越多,分工也越来越细,作为一个 .NET Web 程序猿,多了解了解行业的发展,让自己扩展出新的技能树,对自 ...
- python drf+xadmin+react+dva+react-native+sentry+nginx 搭建前后端分离的博客完整平台
前言: 经过差不多半年的开发,搭建从前端到服务器,实现了前后端分离的一个集PC端.移动端的多端应用,实属不易,今天得空,好好写篇文章,记录这些天的成果.同时也做个分享. 演示网站地址: http:// ...
- 巨蟒python全栈开发flask8 MongoDB回顾 前后端分离之H5&pycharm&夜神
1.MongoDB回顾 .启动 mongod - 改变data/db位置: --dbpath D:\data\db mongod --install 安装windows系统服务 mongod --re ...
随机推荐
- eclipse 报错问题:java.lang.ClassNotFoundException:
解决方法:https://www.cnblogs.com/whatlonelytear/articles/5921978.html
- python---哈希算法实现
# coding = utf-8 class Array: def __init__(self, size=32, init=None): self._size = size self._items ...
- form组件
def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['hobby'].choices ...
- 设计模式学习之享元模式(Flyweight,结构型模式)(20)
转:http://terrylee.cnblogs.com/archive/2006/03/29/361767.html 摘要:面向对象的思想很好地解决了抽象性的问题,一般也不会出现性能上的问题.但是 ...
- Eclipse导入maven项目时,pom-xml文件报错处理方法
报错如下: Cannot read lifecycle mapping metadata for artifact org.apache.maven.plugins 解决方法: 出现该错误是因为jar ...
- C#使用CefSharp碰到的坑(一)
使用CEFSharp做模拟提交的话,在高版本下会出现一个神奇的错误: 如果站点使用的是阿里提供的验证控件的话,就是那种拖动条的,如果是使用CEFSharp的新版本的(目前我是测试过70的) ,会出现拖 ...
- using eclipse to write c programe
参考:http://developer.51cto.com/art/200906/126363.htm http://www.cnblogs.com/feisky/archive/2010/03/21 ...
- 【转】傅盛:一家公司最大瓶颈就是CEO
创业之路,一经踏上,即永无止境.当然,对于初创期的CEO而言,还是有一些方法论可循. 来源 | 盛盛GO(ID:fstalk) 文 | 傅盛 经常有创业者问我,如何当好创业公司CEO,或如何创业,我 ...
- spark伪分布式的安装
不依赖hadoop 百度分享安装包地址:http://pan.baidu.com/s/1dD4BcGT 点击打开链接 解压 并重命名: 进入spark100目录: 修改配置: Cd conf 配置单击 ...
- swift中Cell的内容定制
1.cellForTitle 2.register