码迷,mamicode.com
首页 > 移动开发 > 周排行
WSL (Windows Subsystem for Linux) 的 VSLAM (Visual Simultaneous Localization and Mapping) 道路
以 Windows Subsystem for Linux 闯入 Visual Simultaneous Localization and Mapping 世界的艰难道路... 这里包含各种各样的 WSL 中可能用到的包,美化方案,以及相关软件的一些使用小技巧,用于自己踩坑记录的同时,希望能够帮到同... ...
分类:移动开发   时间:2021-02-15 12:39:26    阅读次数:0
604 uniapp概述
![](https://img2020.cnblogs.com/blog/1877004/202102/1877004-20210212214510484-890985676.png) ![](https://img2020.cnblogs.com/blog/1877004/202102/18770... ...
分类:移动开发   时间:2021-02-16 12:20:31    阅读次数:0
2/12 vue-axios 中 onUploadProgress 实现 上传图片 动态进度条
写在前面 今天折腾了一下午加一点点晚上的时间,终于把图片上传,动态进度条给搞出来了 我一直怀疑是 supervisor 这个狗屎东西 不会很好地刷新 热部署,导致我上传失败 明天继续整理 上传的东西,搞懂 今天就主要记录一下,动态进度条 思路 思路就是得用找到上传的状态,算出离结束还有多久/占多少百 ...
分类:移动开发   时间:2021-02-16 12:23:03    阅读次数:0
k8s集群执行apply报错
The connection to the server 192.168.1.11:6443 was refused - did you specify the right host or port? 怀疑是不是kubelet挂了,检查 [root@master1 prometheus]# syst ...
分类:移动开发   时间:2021-02-16 12:26:05    阅读次数:0
使用ONNX将模型转移至Caffe2和移动端
使用ONNX将模型转移至Caffe2和移动端 本文介绍如何使用 ONNX 将 PyTorch 中定义的模型转换为 ONNX 格式,然后将其加载到 Caffe2 中。一旦进入 Caffe2, 就可以运行模型来仔细检查它是否正确导出,然后展示了如何使用 Caffe2 功能(如移动导出器)在移动设备上执行 ...
分类:移动开发   时间:2021-02-16 12:32:01    阅读次数:0
uni-app新建vue项目
1.打开windows 控制面板 2.输入 vue create -p dcloudio/uni-preset-vue test 3.开始弄npm run serve 如果新增加的页面中用了scss 需要手动安装 npm install -D sass-loader@7.x 如果用版本太高了 会导致 ...
分类:移动开发   时间:2021-02-17 14:05:32    阅读次数:0
浅谈 Hybrid App
浅谈 Hybrid App Hybrid App开发 四大主流平台 AppCan: http://www.appcan.cn/ ...
分类:移动开发   时间:2021-02-17 14:32:19    阅读次数:0
编写T4模板+DapperHelper(Sqlite数据库,简单更改即可适用其他数据库)==》简易ORM
T4模板 <#@ template debug="false" hostspecific="false" language="C#" #> <#@ output extension=".cs" #> <#@ assembly name="System.Data" #> <#@ assembly na ...
分类:移动开发   时间:2021-02-17 14:41:02    阅读次数:0
axios的封装 和拦截器的使用
import axios from "axios"; //第一种方式 export function request(config,success,failure) { const instance = axios.create({ baseURL:"http://123.207.32.32:800 ...
分类:移动开发   时间:2021-02-18 12:52:38    阅读次数:0
[LeetCode] 1031. Maximum Sum of Two Non-Overlapping Subarrays 两个不重叠的子数组的最大和
Given an array of non negative integers, return the maximum sum of elements in two non overlapping (contiguous) subarrays, which have lengths and . (F ...
分类:移动开发   时间:2021-02-18 12:53:23    阅读次数:0
【Android异常】关于Notification启动时,startForeground报错
遇到两个报错: 第一个权限问题报错,好解决 startForeground requires android.permission.FOREGROUND_SERVICE Manifest给下权限就行 <manifest ...> ... <uses-permission android:name=" ...
分类:移动开发   时间:2021-02-18 13:21:34    阅读次数:0
JavaFx动画-路径移动
import javafx.animation.Animation; import javafx.animation.PathTransition; import javafx.application.Application; import javafx.scene.Scene; import ja ...
分类:移动开发   时间:2021-02-18 13:23:30    阅读次数:0
算法图解——截留雨水( Trapping Rain Water)
1. 题目描述 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining ...
分类:移动开发   时间:2021-02-18 13:31:34    阅读次数:0
SpringBoot (3) WebServerApplicationContext
SpringBoot (3) WebServerApplicationContext SpringBoot版本 SpringBoot 2.1.6 WebServerApplicationContext 在run方法中,通过反射创建了AnnotationConfigServletWebServerAp ...
分类:移动开发   时间:2021-02-18 13:33:07    阅读次数:0
异常:This application has no explicit mapping for /error, so you are seeing this as a fallback.
异常:This application has no explicit mapping for /error, so you are seeing this as a fallback. 挖坑埋你 2018-03-12 12:49:46 65012 收藏 2 分类专栏: Questions 从菜鸟到 ...
分类:移动开发   时间:2021-02-18 13:55:14    阅读次数:0
移动端网页--better-scroll容易采坑合集
移动端网页--better-scroll容易采坑合集 一、better-scroll源码bug,浏览器需要刷新一次才能正常滑动 在new BScroll时,在options中加入 mouseWheel: true,//开启鼠标滚轮 disableMouse: false,//启用鼠标拖动 disab ...
分类:移动开发   时间:2021-02-19 12:59:19    阅读次数:0
axios解决高并发——axios.all与axios.spread
1.前言 在官方 axios 中,还提供了 axios.all和axios.spread 这两个方法,这两个方法主要是为了执行多个并发请求,官方文档中,它们的用法示例如下: function getUserAccount() { return axios.get('/user/12345'); } ...
分类:移动开发   时间:2021-02-19 13:38:48    阅读次数:0
记录一下vue-cli3搭建项目后遇到axios请求跨域的问题
只记录一种最简便的方法,在项目根目录下创建vue.config.js,修改module配置: 1 module.exports = { 2 outputDir: 'dist', //build输出目录 3 assetsDir: 'assets', //静态资源目录(js, css, img) 4 l ...
分类:移动开发   时间:2021-02-19 13:44:35    阅读次数:0
豆瓣8.0!烂番茄99%鲜!苹果高分冲奥动画《狼行者》精彩幕后来了!
如果不是民间传说,想必爱尔兰的狼群早被人遗忘了。动画电影《狼行者》(Wolfwalkers),就是以中世纪故事奥索里王国的狼人为灵感来源,由爱尔兰动画工作室Cartoon Saloon打造。该影片是第45届多伦多国际电影节首映作品,于2020年12月11日在流媒体平台Apple TV+上线,并获得了... ...
分类:移动开发   时间:2021-02-19 13:50:43    阅读次数:0
解密Android开发常见误区!程序员工作2年月薪12K,成功入职阿里
解密Android开发常见误区!程序员工作2年月薪12K,成功入职阿里 ...
分类:移动开发   时间:2021-02-20 11:47:51    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!