码迷,mamicode.com
首页 >  
搜索关键字:require    ( 6509个结果
nodejs 初入
nodejs 模块路径1.内置模块 如果传递给require函数的是NodeJS内置模块名称,不做路径解析,直接返回内部模块的导出对象,例:require('http')。2. nodejs 支持(/)或盘符(C:)开头的绝对路径,也支持./开头的相对路径。3.nodejs还支持第三种路径 模块路....
分类:Web程序   时间:2014-11-11 18:21:12    阅读次数:228
使用requirejs的r.js压缩碰到的问题
1.require模块里,再去require模块,依赖分析不到,r.js不会合并。解决办法:还是放在require([])的这个数组里。2.r.js也不会识别jquery.min.js。解决办法:把jquery.min.js改名成jquery.js。
分类:Web程序   时间:2014-11-11 16:28:29    阅读次数:191
sas中的sql(1) 基本语法
Sas proc sql与寻常sas语句的的不同之处1:The PROC SQL step does not require a RUN statement. PROC SQL executes each query automatically2:Unlike many other SAS pr.....
分类:数据库   时间:2014-11-11 16:12:43    阅读次数:398
简单的nodejs 文件系统(fs)读写例子。
在nodejs中,可以通过fs(file system)模块进行文件的I/O操作。API链接地址:http://nodeapi.ucdok.com/#/api/fs.html下面进行fs文件系统的使用实例:1、模块调用声明:var fs= require('fs'); var path = requ...
分类:Web程序   时间:2014-11-11 16:11:11    阅读次数:212
nodejs mysql 数据查询例子
1、安装nodejs2、安装mysql npm包地址:https://github.com/felixge/node-mysqlnpm install mysql3、相应API查看及调用:var mysql = require('mysql');var connection = mysql...
分类:数据库   时间:2014-11-11 12:17:07    阅读次数:248
Ruby之Rspec的报错解决
#enconding:utf-8 require 'selenium-webdriver' require 'rspec' describe "baidu main page" do it "should have 百度一下 button on the baidu main page"do dr = Selenium::WebDriver.for:ie url = 'www.baid...
分类:其他好文   时间:2014-11-10 23:21:48    阅读次数:1334
相对路径和绝对路径
在require.js说明文档里有这么一段话有时候你想直接饮用一个script,而不是依照(conform)“baseUrl+paths"规则来找它。如果一个模块ID由以下之一的规则,这个ID就不会通过”baseUrl+paths"配置来加载script,而是像普通的script url属性来加载。...
分类:其他好文   时间:2014-11-10 19:40:49    阅读次数:208
PHP with MySQL essential training-10.5including and require files
1# 主要讲了四个外接文件的函数,分别是include,include_once,require,require_once。include and include_once :if there is something wrong,they will not throw an error, they...
分类:数据库   时间:2014-11-10 09:53:18    阅读次数:152
Linux下如何查看端口占用情况——只是个实例
作者:zhanhailiang 日期:2014-11-08 基于express写一个测试服务器代码如下,但是运行失败,报“listen EADDRINUSE”,字面上理解是error address in use,说明当前你监听的端口3000已经被使用了: [root@~/wade/wadetest]# cat index.js var express = require('expres...
分类:系统相关   时间:2014-11-08 02:08:53    阅读次数:438
PHP加载大文件时require和file_get_contents的性能对比
PHP PHP内核 require file_get_contents 大文件...
分类:Web程序   时间:2014-11-08 00:57:14    阅读次数:371
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!