码迷,mamicode.com
首页 >  
搜索关键字:require    ( 6509个结果
require.js读书笔记 2.usage
REQUIREJS APIThis is theRequireJS 2.0 API. If you want 1.0:Link to 1.0.Usage§§ 1-1.3Load JavaScript Files§ 1.1data-main Entry Point§ 1.2Define a Modul...
分类:Web程序   时间:2014-10-22 20:14:40    阅读次数:348
nodejs中req.body 为空的问题
随着express升级,bodyParser从express中被分离了出来,因此,在使用express新版本的时候,需要npm install body-parser 来安装bodyParser。 在app.js中要引入bodyParser。 var bodyParser = require(‘body-parse...
分类:Web程序   时间:2014-10-22 13:04:11    阅读次数:1076
nodejs中搭建服务器
通过nodejs搭建一个HTTP服务器//引入http模块var http = require('http');function onReg(req,res){ res.writeHead(200,{"Content-Type:text/plain;charset=utf-8"}); r...
分类:Web程序   时间:2014-10-22 06:15:48    阅读次数:216
nodejs 与数据库的连接
//创建连接(封装)var mysql = require("mysql")function name(){var con = mysql.createConnection({ host :"localhost", user :"****", password :"*****", datab...
分类:数据库   时间:2014-10-22 00:41:24    阅读次数:266
ModelSim Simulation of RapidIO II IP Core Demonstration Testbench May Require ld_debug Command
Solution ID: fb83262Last Modified: May 17, 2013Product Category: Intellectual PropertyProduct Area: Comm, Interface & PeripheralsProduct Sub-area: IP ...
分类:Windows程序   时间:2014-10-21 21:20:55    阅读次数:319
loadmore
实例点击loadmore.js/** loadmore.js require jQuery,artTemplate* Butterfly 2013.08.28*/define(['../utils/artTemplate'], function(template){'use strict'; ...
分类:其他好文   时间:2014-10-21 17:32:39    阅读次数:268
ruby直接底层连接数据库
class MysqlTest #Code here require "mysql" def testMysql dbc=Mysql.real_connect('localhost','root','123','Ivic_Portal') res=dbc.query('select...
分类:数据库   时间:2014-10-21 00:44:22    阅读次数:291
php中文件引入require
./ 表示当前层../表示向上一层php中好像不能像asp那样,用 “/” 表示根目录,但可以用$_SERVER['DOCUMENT_ROOT'] 表示网站根目录引用分为三种: 上级对下级的引用(上级引用) 1.从属上级引用 (cc.php对dd.php的引用 同属于cc目录) re...
分类:Web程序   时间:2014-10-20 19:13:52    阅读次数:155
lua遍历目录
require"lfs"function findindir (path, wefind, r_table, intofolder) for file in lfs.dir(path) do if file ~= "." and file ~= ".." then ...
分类:其他好文   时间:2014-10-19 18:25:58    阅读次数:208
requireJS的匿名模块和命名模块的差别和最佳实践
requirejs是一个简单的javascript框架,支持模块化编码和模块的异步加载。在requireJS中模块可以分为:匿名模块和命名模块这2种。jquery从1.7版本开始支持AMD(Asynchronous Module Definition),并且是一个命名模块,模块名就是jquery。如果是命名模块,那么使用require加载该模块的时候,模块名一定要正确,不能随意修改。匿名模块具有更大的灵活性,加载匿名模块的时候,名称可以随意指定。...
分类:Web程序   时间:2014-10-18 18:24:17    阅读次数:231
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!