上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 97 下一页
摘要: apache vhost设置端口号 阅读全文
posted @ 2020-12-16 10:12 newmiracle宇宙 阅读(188) 评论(0) 推荐(0) 编辑
摘要: PHP 引用原理 变量是门牌号 地址是门牌号的地址 值就是房子 $aa=&$bb; 就是aa门牌号的地址改成bb的地址了 所以这个地址有aa和bb2个门牌号了 所以bb是什么aa也是什么了 因为他们都是同个房子 下面说个数组的情况 $aa['xx']['yy']['zz']=1; $bb=&$aa[ 阅读全文
posted @ 2020-12-15 14:12 newmiracle宇宙 阅读(75) 评论(0) 推荐(0) 编辑
摘要: quark-h5笔记1 先说下安装 首先要FQ 不然很难 github下载好后 然后先 npm install 安装依赖然后编译 npm run lib:h5-swiper 然后再 npm run dev-client 启动客户端 启动服务端要现状mogondb 里面注意下要customs选这个 其 阅读全文
posted @ 2020-12-13 13:23 newmiracle宇宙 阅读(632) 评论(1) 推荐(0) 编辑
摘要: 修改mysql root 密码的方法 进入mysql数据库 update user set password=password('admin') where user = 'root'; flush PRIVILEGES 阅读全文
posted @ 2020-12-10 21:32 newmiracle宇宙 阅读(61) 评论(0) 推荐(0) 编辑
摘要: var tl = new TimelineLite(); tl.addLabel("blueGreenSpin1",1) tl.addLabel("blueGreenSpin2",2) tl.addLabel("blueGreenSpin3",3) tl.to($('.ddd1'), 3, {sca 阅读全文
posted @ 2020-12-10 13:54 newmiracle宇宙 阅读(248) 评论(0) 推荐(0) 编辑
摘要: javascript content-type详解 1 application/x-www-form-urlencoded 这个类型就是jquery ajax content-type 默认的设置 PHP POST可以接受 2 contentType : "application/json PHP接 阅读全文
posted @ 2020-12-08 14:06 newmiracle宇宙 阅读(2774) 评论(0) 推荐(0) 编辑
摘要: luban h5编辑器 代码详解1 先看路由器 router.js import Vue from 'vue' import Router from 'vue-router' // import Home from './views/Home.vue' import Home from './vie 阅读全文
posted @ 2020-12-07 15:34 newmiracle宇宙 阅读(227) 评论(0) 推荐(0) 编辑
摘要: const app = new PIXI.Application(); document.body.appendChild(app.view); var imgURL = "/moban/images/share.jpg"; //加载图像,加载完成后执行setup函数 PIXI.loader.add 阅读全文
posted @ 2020-12-07 10:58 newmiracle宇宙 阅读(596) 评论(0) 推荐(0) 编辑
摘要: javascript判断NaN的方法 其实判断不了 isNaN是判断是不是数字 NaN本身也是个数字 所以返回值可能NaN要注意 阅读全文
posted @ 2020-12-01 14:48 newmiracle宇宙 阅读(405) 评论(0) 推荐(0) 编辑
摘要: php addslashes 需要注意的问题 存入数据库会去掉斜杠 所以一般别用 addslashes 实在不行就过滤双引号也行 阅读全文
posted @ 2020-11-28 10:01 newmiracle宇宙 阅读(134) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 97 下一页