App Store Connect Operation ErrorERROR ITMS-90030: "Nib file 'Main~iphone.nib' was not found. Please ensure the specified file is included in the bund ...
分类:
其他好文 时间:
2020-05-17 01:26:45
阅读次数:
95
1. import import(/* webpackPrefetch: true,webpackChunkName: "yourFileName",webpackPreload: true */ 'LoginModal') import ( /* webpackChunkName: "yourFi ...
分类:
Web程序 时间:
2020-05-15 10:03:52
阅读次数:
88
1、先推荐一个轻量级缓存框架——ACache(ASimpleCache) ACache介绍: ACache类似于SharedPreferences,但是比SharedPreferences功能更加强大,SharedPreferences只能保存一些基本数据类型、Serializable、Bundle ...
分类:
移动开发 时间:
2020-05-15 00:14:26
阅读次数:
74
build/vue-loader.coonfig.js module.exports = (isDev) => { return { preserveWhitepace: true, //清除文本换行等情况空格 extractCSS: isDev ? false : true, // 把vue的cs ...
分类:
其他好文 时间:
2020-05-06 20:01:47
阅读次数:
124
本质上,webpack 是一个现代 JavaScript 应用程序的静态模块打包器(module bundler)。当 webpack 处理应用程序时,它会递归地构建一个依赖关系图(dependency graph),其中包含应用程序需要的每个模块,然后将所有这些模块打包成一个或多个 bundle。 ...
分类:
Web程序 时间:
2020-05-05 10:46:08
阅读次数:
67
ResourceBundle bundle = ResourceBundle.getBundle("jdbc"); driver = bundle.getString("driver"); url = bundle.getString("url"); user = bundle.getString( ...
分类:
其他好文 时间:
2020-05-01 18:48:48
阅读次数:
60
先出现的是超过最大调用栈问题: npm ERR! Maximum call stack size exceeded 百度之后说给npm降级或者升级 降级 : npm install -g npm@5.4.0 升级 : npm install -g npm 升级到最新版 结果降级之后再尝试的时候就直接 ...
分类:
其他好文 时间:
2020-04-29 20:23:04
阅读次数:
90
检查你有没有把静态库和动态库配置错误!! 下图处是配置动态库的地方! 对于动态库和静态库都有使用的时候,注意把静态库设置成“Do not Embeded” ...
分类:
移动开发 时间:
2020-04-12 16:37:20
阅读次数:
214
基本实现了拍照,录制视频,前后摄像头切换的功能,可以转屏,聚焦 源码:https://gitee.com/lyc96/android_video 1.activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xm ...
分类:
移动开发 时间:
2020-04-03 22:13:03
阅读次数:
107
http.query New in version 2015.5.0 Query a resource, and decode the return data Passes through all the parameters described in the :py:func: : .. auto ...
分类:
Web程序 时间:
2020-03-28 21:38:06
阅读次数:
94