上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页
摘要: let main = plus.android.runtimeMainActivity();//为了防止快速点按返回键导致程序退出重写quit方法改为隐藏至后台 plus.runtime.quit = function() { main.moveTaskToBack(false);};//重写toa 阅读全文
posted @ 2021-06-09 10:32 mrt_yy 阅读(1024) 评论(0) 推荐(0) 编辑
摘要: location ~* ^.+(.*) { if (!-e $request_filename) { rewrite ^/(.*)$ /index.html; } } /*******************1上****2下**********************/ location / { t 阅读全文
posted @ 2021-06-07 10:26 mrt_yy 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 1.安装request模块 cnpm install request --save 基本形式 //request(options,callback) request({ url: url,//请求路径 method: "POST",//请求方式,默认为get headers: {//设置请求头 "c 阅读全文
posted @ 2021-03-05 10:22 mrt_yy 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 模拟器名称 连接默认端口 夜神安卓模拟器 62001 逍遥安卓模拟器 21503 BlueStacks(蓝叠安卓模拟器) 5555 雷电安卓模拟器 5555 天天安卓模拟器 5037 网易MuMu(安卓模拟器) 7555 安卓模拟器大师 54001 Genymotion 5555 阅读全文
posted @ 2021-03-03 16:00 mrt_yy 阅读(392) 评论(0) 推荐(0) 编辑
摘要: router.beforeEach((to, from, next) => {/* 路由发生变化修改页面title */if (to.meta.title) {document.title = to.meta.title}if(to.meta.content){ // public/index.ht 阅读全文
posted @ 2021-03-02 17:12 mrt_yy 阅读(293) 评论(0) 推荐(0) 编辑
摘要: configureWebpack: (config) => { // 取消console打印 if (process.env.NODE_ENV 'production') { config.optimization.minimizer[0].options.terserOptions.compres 阅读全文
posted @ 2021-03-02 13:37 mrt_yy 阅读(1060) 评论(0) 推荐(0) 编辑
摘要: jsonwebtoken 用法 jwt.sign(payload, secretOrPrivateKey, [options, callback]) (异步)如果提供回调,则使用err或JWT 调用回调。 (同步)将JsonWebToken返回为字符串。 payload必须是一个object, bu 阅读全文
posted @ 2021-02-07 22:11 mrt_yy 阅读(228) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <title>credit.daan.gov.cn</title> </head> <body> <frameset cols=*,0 rows=* border=0 framespacing=0 frameborder=NO> <frame src='http://12 阅读全文
posted @ 2020-08-21 09:02 mrt_yy 阅读(90) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> let obj = [{ id: 1, name: '顶级1', pid: 0 }, { id: 2, name: '顶级1 第二级1', pid: 1 }, { id: 3, name: '顶级1 第二级2', pid: 1 }, { 阅读全文
posted @ 2020-08-19 11:02 mrt_yy 阅读(146) 评论(0) 推荐(0) 编辑
摘要: background: -webkit-linear-gradient(#EE2825,#F6872B,#f6872b); /* Safari 5.1-6.0 */ background: -o-linear-gradient(#EE2825,#F6872B,#f6872b); /* Opera 1 阅读全文
posted @ 2020-08-12 14:50 mrt_yy 阅读(178) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页