摘要:
JSONP $.getJSON("http://localhost:9011/getData?callback=?", function(data){ console.log(data);// "hello world" }); server app.get("/getData", function(req, res, next){ var data = "hello worl... 阅读全文
摘要:
var fs = require("fs"); var readStream = fs.createReadStream(path, {'encoding':'utf8'}); var bufferData = [], size = 0; readStream.on('data', function(chunk){// typeof chunk "string" bufferData... 阅读全文
摘要:
数组arr为无序数组 先对数组arr进行排序 Array.prototype.sort 排序后的arr顺序为从小到大,所以如果值是重复的,那一定是相邻的 for循环判断(每次循环重新计算数组arr的长度) 如果item[arr[i]]存在,则执行item[arr[i]].count++; 如果ite 阅读全文