摘要:在上一章入门及实例一应用实例的基础上增加优化界面增加后台框架,操作。删除选中项时,一定要在删除成功后将置空,否则在下次选择时会选中已删除的项,虽然没有元素但可能会影响其他一些操作。中设置跨域访问实际是对进行匹配。
在上一章 React + MobX 入门及实例(一) 应用实例TodoList的基础上
增加ant-design优化界面
增加后台express框架,mongoose操作。
增加mobx异步操作fetch后台数据。
步骤 Ⅰ. ant-design安装antd包
npm install antd --save
安装antd按需加载依赖
npm install babel-plugin-import --save-dev
更改.babelrc 配置为
{ "presets": ["react-native-stage-0/decorator-support"], "plugins": [ [ "import", { "libraryName": "antd", "style": true } ] ], "sourceMaps": true }
引入antd控件使用
import { Button } from "antd";Ⅱ. express, mongodb
前提:mongodb的安装与配置
安装express、mongodb、mongoose
npm install --save express mongodb mongoose
项目根目录创建server.js,撰写后台服务
引入body-parser中间件,作用是对post请求的请求体进行解析,转换为我们需要的格式。
引入Promise异步,将多查询分为单个Promise,用Promise.all连接,待查询完成后才会发送查询后的信息,如果不使用异步操作,查询不会及时响应,前端请求的可能是上一次的数据,这不是我们想要的结果。
//express const express = require("express"); const app = express(); //中间件 const bodyParser = require("body-parser"); app.use(bodyParser.urlencoded({extended: false}));// for parsing application/json app.use(bodyParser.json()); // for parsing application/x-www-form-urlencoded //mongoose const mongoose = require("mongoose"); mongoose.connect("mongodb://localhost/todolist",{useMongoClient:true}); mongoose.Promise = global.Promise; const db = mongoose.connection; db.on("error", console.error.bind(console, "connection error:")); db.once("open", function () { console.log("connect db.") }); //模型 const todos = mongoose.model("todos",{ key: Number, todo: String }); //发送json: 数据+数量 let sendjson = { data:[], count:0 }; //设置跨域访问 app.all("*", function(req, res, next) { res.header("Access-Control-Allow-Origin", "*"); res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); 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(); }); //api/todos app.post("/api/todos", function(req, res){ const p1 = todos.find({}) .exec((err, result) => { if (err) console.log(err); else { sendjson["data"] = result; } }); const p2 = todos.count((err,result) => { if(err) console.log(err); else { sendjson["count"] = result; } }).exec(); Promise.all([p1,p2]) .then(function (result) { console.log(result); res.send(JSON.stringify(sendjson)); }); }); //api/todos/add app.post("/api/todos/add", function(req, res){ todos.create(req.body, function (err) { res.send(JSON.stringify({status: err? 0 : 1})); }) }); //api/todos/remove app.post("/api/todos/remove", function(req, res){ todos.remove(req.body, function (err) { res.send(JSON.stringify({status: err? 0 : 1})); }) }); //设置监听80端口 app.listen(80, function () { console.log("listen *:80"); });
package.json -- scripts添加服务server启动项
"scripts": { "start": "node scripts/start.js", "build": "node scripts/build.js", "test": "node scripts/test.js --env=jsdom", "server": "node server.js" },
Ⅲ. Fetch后台数据
前后端交互使用fetch,也同样写在store里,由action触发。与后台api一一对应,主要包含这三个部分:
@action fetchTodos(){ fetch("http://localhost/api/todos",{ method:"POST", headers: { "Content-type":"application/json" }, body: JSON.stringify({ current: this.current, pageSize: this.pageSize }) }) .then((response) => { // console.log(response); response.json().then(function(data){ console.log(data); this.total = data.count; this._key = data.data.length===0 ? 0: data.data[data.data.length-1].key; this.todos = data.data; this.loading = false; }.bind(this)); }) .catch((err) => { console.log(err); }) } @action fetchTodoAdd(){ fetch("http://localhost/api/todos/add",{ method:"POST", headers: { "Content-type":"application/json" }, body: JSON.stringify({ key: this._key, todo: this.newtodo, }) }) .then((response) => { // console.log(response); response.json().then(function(data){ console.log(data); /*成功添加 总数加1 添加失败 最大_key恢复原有*/ if(data.status){ this.total += 1; this.todos.push({ key: this._key, todo: this.newtodo, }); message.success("添加成功!"); }else{ this._key -= 1; message.error("添加失败!"); } }.bind(this)); }) .catch((err) => { console.log(err); }) } @action fetchTodoRemove(keyArr){ fetch("http://localhost/api/todos/remove",{ method:"POST", headers: { "Content-type":"application/json" }, body: JSON.stringify({ key: keyArr }) }) .then((response) => { console.log(response); response.json().then(function(data){ // console.log(data); if(data.status){ if(keyArr.length > 1) { this.todos = this.todos.filter(item => this.selectedRowKeys.indexOf(item.key) === -1); this.selectedRowKeys = []; }else{ this.todos = this.todos.filter(item => item.key !== keyArr[0]); } this.total -= keyArr.length; message.success("删除成功!"); }else{ message.error("删除失败!"); } }.bind(this)); }) .catch((err) => { console.log(err); }) }注意
antd Table控件绑定的DataSource是普通数组形式,而经过Mobx修饰器修饰的数组是observableArray,所以要通过observable.toJS()转换成普通数组。
antd Table控件数据源需包含key,一些对行的操作都依赖key。
删除选中项时,一定要在删除成功后将selectedRowKeys置空,否则在下次选择时会选中已删除的项,虽然没有DOM元素但可能会影响其他一些操作。
使用Mobx过程中,如果this无法代表本身,而是指向其他,这时候函数不会执行,也不像React会报错:this is undefined,这时候需要手动添加bind(this),如果在View试图中调用时需要绑定,写为:bind(store);
跨域处理JSONP是一种方法,但是最根本的方法是操作header。server.js中设置跨域访问实际是对header进行匹配。
如果将mongoose查询写为异步,每个查询最后都需要添加.exec(),这样返回的才是Promise对象。mongoose易错。
截图 源码Github
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/92037.html
摘要:前言现在最热门的前端框架,毫无疑问是。对于小型应用,引入状态管理库是奢侈的。但对于复杂的中大型应用,引入状态管理库是必要的。现在热门的状态管理解决方案,相继进入开发者的视野。获得计算得到的新并返回。 前言 现在最热门的前端框架,毫无疑问是React。 React是一个状态机,由开始的初始状态,通过与用户的互动,导致状态变化,从而重新渲染UI。 对于小型应用,引入状态管理库是奢侈的。 但...
摘要:前言原本说接下来会专注学但是最新工作又学习了一些有意思的库於是就再写下来做个简单的入门之前我写过一篇文章这个也算是作為一个补充吧这次无非就是类似笔记把认为的一些关键点记下来有些地方还没用到就衹是描述一下代码有些自己写的有些文档写的很好就搬下 前言 原本说接下来会专注学nodejs,但是最新工作又学习了一些有意思的库,於是就再写下来做个简单的入门,之前我写过一篇文章,这个也算是作為一个补...
摘要:用于简单可扩展的状态管理,相比有更高的灵活性,文档参考中文文档,本文作为入门,介绍一个简单的项目。任务已完成下一个任务修复谷歌浏览器页面显示问题提交意见反馈代码创建在中引入主入口文件设置参考入门学习总结 MobX用于简单、可扩展的React状态管理,相比Redux有更高的灵活性,文档参考:MobX中文文档,本文作为入门,介绍一个简单的TodoList项目。 1. 预期效果 showIm...
摘要:新的项目目录设计如下放置静态文件业务组件入口文件数据模型定义数据定义工具函数其中数据流实践的核心概念就是数据模型和数据储存。最后再吃我一发安利是阿里云业务运营事业部前端团队开源的前端构建和工程化工具。 本文首发于阿里云前端dawn团队专栏。 项目在最初应用 MobX 时,对较为复杂的多人协作项目的数据流管理方案没有一个优雅的解决方案,通过对MobX官方文档中针对大型可维护项目最佳实践的...
摘要:安装等相关依赖。通过启动项目,进行后续操作。自定义执行状态的改变。任何不在使用状态的计算值将不会更新,直到需要它进行副作用操作时。强烈建议始终抛出错误,以便保留原始堆栈跟踪。 2018-08-14 learning about work begin:2018-08-13 step 1 熟悉react 写法 step 2 mobx 了解&使用 step 3 thrift接口调用过程 Re...
阅读 962·2021-11-23 09:51
阅读 2664·2021-08-23 09:44
阅读 622·2019-08-30 15:54
阅读 1401·2019-08-30 13:53
阅读 3083·2019-08-29 16:54
阅读 2514·2019-08-29 16:26
阅读 1150·2019-08-29 13:04
阅读 2258·2019-08-26 13:50