标签:
最近在用sails框架写移动后台,马上就过年了,打算总结一下。
adapter: ‘redis‘,host: ‘192.168.1.110‘,port: 6379,ttl: 86400,db: 0,pass: ‘‘,prefix: ‘‘这就可以使用了,在nodejs中使用远程session,还有一个必要性,就是V8引擎的内存限制,所以不要在主线程中存储不必要的临时变量,因为如果达到内存上限,就会导致垃圾回收或者系统出现问题。
2)文件上传
req.file(‘avatar‘).upload({dirname : ‘pathName‘}, function (err, uploadedFiles) {if (err) {sails.log.error(err);return res.negotiate(err);}return res.json({message : uploadedFiles.length + ‘ file(s) uploaded successfully!‘});});
3)ORMavatar是上传的文件名,如果是form上传,就是<input type=file name=avatar>上传的文件,这个文件可以支持多文件同时上传,如果不指定dirname,则会上传到默认临时目录,文件名是随机生成的,uploadFiles是个数组,基本格式如下[{fd : ‘d:\\temp\\2aee7706-d0a9-4e1e-9ac0-c17ecf48be44.png‘,size : 48177,type : ‘image/png‘,filename : ‘aa.png‘,status : ‘bufferingOrWriting‘,field : ‘image‘,extra : undefined}]可知保存的文件名为uploadFiles[i].fd,如果要修改文件名或移动文件,需要使用标准的fs包,也可以使用fs-extra包,它可以npm安装,也可以在github.com上查找相应的信息。在移动后台开发中,常常要将上传文件和保存到数据库分开,即上传文件到临时文件,在保存信息的同时,再操作文件,所以需要客户端上传文件名或地址,调用fs包来移动或改名文件。
tableName : ‘s_user‘,attributes : {user_code : {type : ‘string‘},user_password : {type : ‘string‘},user_email : {type : ‘string‘},user_mobile : {type : ‘string‘}}总体来说,非常简单,tableName是数据库中的表名,attributes是列名,默认情况下属性值就是列名,如果不一样,可以增加一个columnName属性,如果关联了另外一张表,增加model属性,如下};module.exports = {tableName: ‘t_dep‘,attributes: {hospital_name: {type: ‘string‘},hospital_grade: {type: ‘integer‘},province: {model: ‘district‘},city: {model: ‘district‘},county: {model: ‘district‘},hospital_address: {type: ‘string‘},hospital_desc: {type: ‘string‘},hospital_longititude: {type: ‘float‘},hospital_latitude: {type: ‘float‘},hospital_postcode: {type: ‘string‘},hospital_tel: {type: ‘string‘},created_user: {model: ‘user‘},updated_user: {model: ‘user‘}}};
调用起来非常简单,在api/controller下的控制器文件中,直接使用模块名即可,不需要require,如User.create(),User.find()等基本方法如下:.count().create().destroy().find().findOne().findOrCreate().native().query().stream().update()这些方法都非常容易看到用法,具体内容查看sailsjs的官方文档即可。
populate用来获取关联表的数据,如Doctor.find({id:doctor_id}).populate(‘user‘).exec(function(err, doctors){}),在某些情况下非常容易处理
需要注意的是这些方法都是异步调用的,所以在复杂逻辑的时候需要嵌套回调函数,或者使用流程控制如async库在配置表中的attribute的内容中不存在的属性,是无法查询和更新的,所以在更新了数据库之后要随时记着更新attribute
4)WebSocket
标签:
原文地址:http://www.cnblogs.com/stone-fly/p/4341266.html