error_reporting(0); require_once 'phpexcel/PHPExcel.php'; require_once 'phpexcel/PHPExcel/IOFactory.php'; $objPHPExcel = ...
分类:
Web程序 时间:
2014-06-18 23:12:57
阅读次数:
326
我的第一个Nodejs程序:Hello World var http = require("http");http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/.....
分类:
Web程序 时间:
2014-06-17 19:59:52
阅读次数:
241
/* * This is an example build file that demonstrates how to use the build system for * require.js. * * THIS BUILD FILE WILL NOT WORK. It is referencin...
分类:
Web程序 时间:
2014-06-17 13:06:47
阅读次数:
369
groot.view("myview", function (vm, ve) { ve.loada = function () { require("./app/pagea.js").loadpage($("#app"), "myapp") }...
分类:
移动开发 时间:
2014-06-15 22:08:15
阅读次数:
197
1 Ext.require('Ext.TabPanel'); 2 Ext.application({ 3 name: 'MyApp', 4 icon: 'images/icon.png', 5 glossOnIcon: false, 6 tabletStartupS...
分类:
其他好文 时间:
2014-06-15 21:38:19
阅读次数:
213
之前我有看过别人写的文章,说到如何获取客户端IP地址,代码如下:var io = require("socket.io").listen(server);io.sockets.on("connection", function (socket) { var address = sock...
分类:
其他好文 时间:
2014-06-14 08:48:28
阅读次数:
412
首先编写最底层的请求处理程序requestHandler.js,首先要通过npm在项目所在的目录安装formidable,通过语句:npm install
formidable安装,然后代码如下:var querystring = require("querystring");var fs = re...
分类:
Web程序 时间:
2014-06-12 16:44:12
阅读次数:
293
一、为什么要用require.js?最早的时候,所有Javascript代码都写在一个文件里面,只要加载这一个文件就够了。后来,代码越来越多,一个文件不够了,必须分成多个文件,依次加载。下面的网页代码,相信很多人都见过。
这段代码依次加载多个js文件。这样的写法有很大的缺点。首...
分类:
Web程序 时间:
2014-06-12 00:51:45
阅读次数:
324
参考http://ourjs.com/detail/52ad26ff127c76320300001fOffcial
Sitehttp://requirejs.org/下载http://requirejs.org/docs/download.html
需要require.js才能正确执行require...
分类:
Web程序 时间:
2014-06-10 12:34:20
阅读次数:
259