摘要: function a(callback) // 定义一个函数 ,需要传入的参数是callback 然后callback的类型为一个函数{console.log("callback还表示传入的参数是一个函数")callback();// 函数加();表示执行这个函数}function b()// 定义 阅读全文
posted @ 2016-05-23 10:38 公众号python学习开发 阅读(252) 评论(0) 推荐(0) 编辑
摘要: var xpath = require('xpath'); //引用xpath包 var dom = require('xmldom-silent').DOMParser;//引用xmldom包 var request=require('request'); var fs=require('fs'); var urlencode = require('urlencode');//引用url解码和... 阅读全文
posted @ 2016-05-11 15:54 公众号python学习开发 阅读(1345) 评论(0) 推荐(0) 编辑
摘要: 测试xpath的工具 http://www.freeformatter.com/xpath-tester.html#ad-output http://www.xpathtester.com/test 教程 http://www.w3school.com.cn/xpath/xpath_syntax.a 阅读全文
posted @ 2016-05-11 11:26 公众号python学习开发 阅读(1943) 评论(0) 推荐(0) 编辑
摘要: var fs = require('fs');var xpath = require('xpath');var dom = require('xmldom').DOMParser; // Read the file:var data = fs.readFileSync(file, { encodin 阅读全文
posted @ 2016-05-11 11:24 公众号python学习开发 阅读(915) 评论(0) 推荐(0) 编辑
摘要: 已知rwo4的记录中baitaiid是001// row4为jhlist开始循环结果 预想结果:this is:001; 实际结果:else; 为此我单独的看了一下 console.log(bataiid); 其显示结果确实是001. 好奇怪为什么回事 于是 我就改成这样了 new String(r 阅读全文
posted @ 2016-05-10 09:51 公众号python学习开发 阅读(428) 评论(0) 推荐(0) 编辑
摘要: Show Table of Contents What is STOMP? STOMP is a simple text-orientated messaging protocol. It defines an interoperable wire format so that any of the 阅读全文
posted @ 2016-05-09 13:51 公众号python学习开发 阅读(1885) 评论(0) 推荐(0) 编辑
摘要: 前提 启动activemq 接收消息 nodejs 数据库操作,消息的发送和接收,模拟同步。nodejs 数据库操作,消息的发送和接收,模拟同步nodejs 数据库操作,消息的发送和接收,模拟同步nodejs 数据库操作,消息的发送和接收,模拟同步nodejs 数据库操作,消息的发送和接收,模拟同步 阅读全文
posted @ 2016-05-06 16:19 公众号python学习开发 阅读(717) 评论(0) 推荐(0) 编辑
摘要: http://ww.hubwiz.com/class/5359f6f6ec7452081a7873d8 阅读全文
posted @ 2016-05-05 16:40 公众号python学习开发 阅读(189) 评论(1) 推荐(0) 编辑
摘要: 因为返回的是个对象 var selectSql1="select * from spc_word_mst where WORD_ID=? limit 0,1 "var selectSql2="select * from spc_baitai_mst where BAITAI_ID=? limit 0 阅读全文
posted @ 2016-05-05 15:46 公众号python学习开发 阅读(2186) 评论(0) 推荐(0) 编辑
摘要: インストール npm install mysql コネクション var mysql = require('mysql'); var connection = mysql.createConnection({ host : 'localhost', user : 'me', password : 's 阅读全文
posted @ 2016-05-05 15:19 公众号python学习开发 阅读(473) 评论(0) 推荐(0) 编辑