2018年06月05日
interface Array<T> { x: number; y: number; sqrlen(): number; len(): number; normalize(): number[]; scale(s: number): number[]; add(b: number[]): number[]
2018年05月18日
let oMatrix = this.ballMesh.modelMatrix; let matrix = new egret3d.Matrix4_4(); matrix.identity(); matrix.appendRotation(vangle * 60, axis); oMatrix.multiply(matrix); this.ballMesh.orientation.fromMatrix(oMatrix);
2018年05月07日
Unexpected crash! Please log a bug with the commandline you specified.
/opt/local/lib/node_modules/dts-gen-v2/bin/lib/run.js:130
throw e;
2017年04月19日
动态请求数据来更新页面是现在非常常用的方法,比如博客评论的分页动态加载,微博的滚动加载和定时请求加载等。 这些情况下,动态请求返回的数据一般不是已拼好的 HTML 就是 JSON 或 XML,总之不在浏览器端拼数据就在服务器端拼数据。不过,从传输量方面来看,返回 HTML 不划算,而在 web 传输方面,现在更多的是使用 JSON 而不是 XML。浏览器端根据&nbs