摘要:
要实现的效果 在 下面app.json 中加下列代码 在 下面app.json 中加下列代码 "tabBar": { "color": "#7A7E83", "selectedColor": "#3cc51f", "borderStyle": "black", "backgroundColor": 阅读全文
摘要:
var events = require('events');var eventEmitter=new events.EventEmitter();eventEmitter.on('speak',function (msg) { console.log(msg+': speak');})eventE 阅读全文
摘要:
1, 打开 MXD 文件,前期已经发布的文件 右键 service peopertisers 右键 Service Property 出现如下界面: “+”号 需要需要选择SDE库 不需要 选择具体的 库 Name 需要选一个具体的名字有意义的名字 阅读全文
摘要:
EXPDP USERID='GTZW_TD/zd402!@10.0.165/ORCL' schemas=GTZW_TD directory=dump_dir dumpfile=GTZW_TD.dmp 阅读全文
摘要:
我们知道不同的浏览器实现事件是不同的,就比如说我们常见的有三种方法: 1,dom0处理事件的方法,以前的js处理事件都是这样写的。 2,dom2 处理时间的方法 如下:可以同时添加两个相同的事件类型,移除这个时间的时候,函数必须不是匿名函数,否则不起作用 3,ie处理事件,删除事件detachEve 阅读全文
摘要:
var deepCopy= function(source) { var result={};for (var key in source) { result[key] = typeof source[key] 'object'? deepCoyp(source[key]): source[key] 阅读全文
摘要:
打开cmd 在命令行 中输入如下命令 sqlplus sys/zd****!@60.**.203/orcl as sysdba 就直接连上了 阅读全文
摘要:
写了一个hello.py,仅有一句,print 'hello world', 运行 Python hello.py 出错,提示: File "<stdin>" , line 1python hello.py 解释: In the shell you can run shell commands, i 阅读全文