上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 46 下一页
摘要: Linux查看并杀死被占用的端口 sudo apt-get install lsof //安装lsofsudo lsof -i:端口号 //查找对应的进程号sudo kill -9 进程号 //杀死对应的进程 阅读全文
posted @ 2019-06-25 12:18 yongfengnice 阅读(13910) 评论(0) 推荐(0) 编辑
摘要: const express = require('express'); const app = express(); let filter = (req, res, next) => { res.setHeader("Access-Control-Allow-Origin", "*"); //添加跨 阅读全文
posted @ 2019-06-21 19:32 yongfengnice 阅读(553) 评论(0) 推荐(0) 编辑
摘要: String.prototype.trim = function () { return this.replace(/(^\s*)|(\s*$)/g, ''); } function isEmpty(obj) { if (typeof obj === "undefined" || obj == null || obj.trim() == "") { ... 阅读全文
posted @ 2019-06-20 19:43 yongfengnice 阅读(5926) 评论(0) 推荐(0) 编辑
摘要: android.webkit.CookieManager.getInstance().getCookie(url) 部分Android4.4的手机直接卡住了,一直没有返回,原因还不知道。 阅读全文
posted @ 2019-06-19 16:22 yongfengnice 阅读(332) 评论(0) 推荐(0) 编辑
摘要: # Virtual hosts Include etc/extra/httpd-vhosts.conf 阅读全文
posted @ 2019-06-17 18:41 yongfengnice 阅读(560) 评论(0) 推荐(0) 编辑
摘要: public class WebkitCookieProxy extends CookieManager implements CookieJar { private android.webkit.CookieManager mWebkitCookieManager; private static final String TAG = WebkitCookieProxy.class.... 阅读全文
posted @ 2019-06-17 17:10 yongfengnice 阅读(929) 评论(0) 推荐(0) 编辑
摘要: 1. 下载Linux版本的nodejs,下载地址:https://nodejs.org/zh-cn/2. 解压缩,cd进入bin目录,即可看到并可以直接使用node,npm命令了3. node -v 可以查看当前node版本号4. npm -v 可以查看当前npm版本号5. sudo npm install -g less 全局下载安装less编译器6. lessc main.less > ma... 阅读全文
posted @ 2019-06-17 12:18 yongfengnice 阅读(391) 评论(0) 推荐(0) 编辑
摘要: (function(){ var _id = 265486; var isHome = $('a[title="我的卡包"]').html(); var _temp = isHome ? "" : $('span[title]:first').attr('title').slice(4); var _name = '只改这里,你要下载的文件的文件名'; ... 阅读全文
posted @ 2019-06-10 18:03 yongfengnice 阅读(760) 评论(0) 推荐(0) 编辑
摘要: 1. tapd -- 需求管理平台 https://www.tapd.cn 2. 禅道 -- 测试管理平台 3. gitlab -- git代码权限管理平台 4. 百度脑图 -- xmind在线工具 5. draw.io -- uml在线工具 6. teambition -- 团队协作平台 7. J 阅读全文
posted @ 2019-06-10 14:23 yongfengnice 阅读(474) 评论(0) 推荐(0) 编辑
摘要: public class ActLifecycle implements ActivityLifecycleCallbacks { private int mPreActivityStartedCount = 0; private int mActivityStartedCount = 0; private int mActivityOrientation = Configurat... 阅读全文
posted @ 2019-06-06 17:59 yongfengnice 阅读(908) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 46 下一页