1,nfs服务器为web服务器提供统一的php程序,共享文目录为/webdata,配置文件(/etc/exports)设定如下。/webdata172.16.2.10(rw,no_root_squash)172.16.2.15(rw,no_root_squash)修改完配置文件启动nfs服务#servicenfsstart上传discuz文件到/webdata下,2,mysql为两台web服务器授..
分类:
其他好文 时间:
2014-09-08 11:02:37
阅读次数:
580
第一章 Node.js介绍1、Node.js中的模块 每个模块一个js文件,每个模块定义的全局变量或函数的作用范围也被限定在这个模块之内,只有使用exports对象才能将其传递到外部2、简单实例:var http = require('http');http.createServer(functi....
分类:
Web程序 时间:
2014-09-02 22:41:25
阅读次数:
261
1.按照CommonJS规范,在任何模块代码的作用域下内置了以下哪些变量? module context require exports 2.一下方法中哪些存在兼容性问题? spilt indexof trim Date.parse3.下面哪些技术可用于优化 CSS 图片加载...
分类:
其他好文 时间:
2014-08-28 21:08:26
阅读次数:
286
只要是在nodejs中写自己的文件模块就少不了会遇到module.exports和exports的使用,看别人的代码大多都会使用“module.exports=exports=”怪异的串联用法,一问原因,貌似都是云里雾里,如此写法更像是保守的防止性写法。这种问题除了看源代码外,只能写点代码进行求证。...
分类:
Web程序 时间:
2014-08-26 00:23:25
阅读次数:
331
整个jQuery是一个自调用的匿名函数: 1 (function(global, factory) { 2 if (typeof module === "object" && typeof module.exports === "object") { 3 module.exp...
分类:
Web程序 时间:
2014-08-15 23:42:49
阅读次数:
300
1.进入msvc命令控制台。 2.生成.def文件 通过pexports或微软编译环境自带的dumpbin.exe导出DLL对应的def文件 方法一: pexports ***.dll > ***.def 方法二: dumpbin /exports ***.dll > ***.def 其中***代表你的...
分类:
其他好文 时间:
2014-08-12 00:55:04
阅读次数:
360
TypeError: Arguments to path.join must be strings at f (path.js:204:15) at Object.filter (native) at exports.join (path.js:209:40) at expo...
1,概述CommonJS是服务器端模块的规范,Node.js采用了这个规范。根据CommonJS规范,一个单独的文件就是一个模块。加载模块使用require方法,该方法读取一个文件并执行,最后返回文件内部的exports对象。下面就是一个简单的模块文件example.js。console.log("...
分类:
Web程序 时间:
2014-08-04 17:33:37
阅读次数:
300
1.安装 nfs 服务yum install nfs-utils rpcbindchkconfig nfs on2.exprotfs 文件/usr/sbin/exportfs -rvcat /etc/exports/home/ 10.0.2.0/24(rw,sync,all_squash,anonu...
分类:
其他好文 时间:
2014-08-03 22:57:26
阅读次数:
172
dumpbin的用法为:dumpbin /exports my.dll > my.def dlltool的用法为:dlltool -D my.dll -d my.def -l my.lib //生成 .lib 文件 或者为:dlltool -D my.dll -d my.def -l my.a //...