摘要:server { listen 80; server_name nginx.test.com; location / { proxy_pass http://localhost:8080; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded
阅读全文
04 2020 档案
摘要:报错信息 找不到conf 下的nginx.conf nginx: [emerg] open() "/usr/local/nginx/conf/nginx.conf" failed (2: No such file or directory) nginx默认配置 安装时 nginx.conf所在位置为
阅读全文
摘要:1.在 pubspec.yaml 中集成 flutter_localizations; dependencies: flutter: sdk: flutter flutter_localizations: sdk: flutter注意这个会和intl冲突 2.在 MaterialApp 中设置本地化
阅读全文
摘要:在app.js里添加一下代码 onLaunch: function () { const updateManager = wx.getUpdateManager(); wx.getUpdateManager().onUpdateReady(function () { wx.showModal({ t
阅读全文
摘要:/// 销毁之前的订单,否则无法多次购买 FlutterInappPurchase.instance.clearTransactionIOS();
阅读全文
摘要:今天清明节,看了大部分的网页都变灰了,看了下变灰是怎么处理的,主要是这个css 属性:css置灰 filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: g
阅读全文
摘要:监听到code ==403 使用eventBus 统一触发。 遇到的问题是 Navigator.of(context).pushAndRemoveUntil( new MaterialPageRoute(builder: (context) => new loginPage() ), (route)
阅读全文