在/api/models/下,自定义的.js文件内容 module.exports = { tableName: '自定义的数据库名',  autoCreatedAt: false, //关闭  autoUpdatedAt: false, //关闭 }…
在 /api/responses/ 新建文件 >serviceDBError.js 自定义的数据库错误 >serviceError.js  自定义的数据错误 >serviceSuccess.js 自定义的数据成功信息 serviceSuccess.js内容示例: module.exports = function serviceSuccess (msg,result){ var res = this.res; res.status(200); res.json({ "statu…
Sails.js中文文档   http://sailsdoc.swift.ren/ Sails.js是一个Web框架,可以于轻松构建自定义,企业级Node.js Apps.它在设计上类似于像Ruby on Rails的MVC架构的框架,但支持更加现代化, 面向数据风格的Web应用开发.它特别适合于开发实时特性的应用如聊天.Sails.js 基于 Node.js, Connect, Express 和 Socket.io 构建.…
Sails.js中文文档   http://sailsdoc.swift.ren/ Sails.js是一个Web框架,可以于轻松构建自定义,企业级Node.js Apps.它在设计上类似于像Ruby on Rails的MVC架构的框架,但支持更加现代化, 面向数据风格的Web应用开发.它特别适合于开发实时特性的应用如聊天.Sails.js 基于 Node.js, Connect, Express 和 Socket.io 构建. https://linxiaowu66.gitbooks.io/sa…
分享一个js自定义的验证码 window.onload = function () {     var code;     $('.changePassword').click(function () {         if ($('#CheckText').val().toUpperCase()!== code) {             alert("验证码输入错误!");             return;         }         $('#ForgetPass…
js自定义弹出框: 代码如下 <html> <head><title>自定义弹出对话框</title> <style type ="text/css" > .layout { width:2000px; height:400px; border:solid 1px red; text-align:center; } </style> <script type="text/javascript&quo…
超酷HTML5 Canvas图表应用Chart.js自定义提示折线图 效果预览 实例代码 <div class="htmleaf-container"> <div class="htmleaf-content"> <div style="width:30%;margin:0 auto;"> <div> <canvas id="canvas" height="450…
Github : https://github.com/balderdashy/waterline 文档 : https://github.com/balderdashy/waterline-docs Waterline 是通过Adapter关联不同的数据库, (不同的数据库由不同的 Adapter 来关联) module.exports = {    identity: 'user',    adapter: 'default',    attributes: {        usernam…
jquery.validate.js默认配置,jquery.validate.js自定义提示信息 配置jQuery.validator默认的处理方法 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 蕃薯耀 2015年9月16日 10:10:07 星期三…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-…