会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
流年sugar
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
17
18
19
20
21
22
23
24
25
···
35
下一页
2022年4月22日
Native: tried accessing the SQLite plugin but it's not installed."
摘要: 在Android 模拟器和真机中都无法创建sqlite 的数据库 在模拟器中提示Native: tried accessing the SQLite plugin but it's not installed." 结合初始化数据库的写法如下,造成的原因是设备未真正的就绪,sqlite的插件未加载的情
阅读全文
posted @ 2022-04-22 20:56 流年sugar
阅读(72)
评论(0)
推荐(0)
2022年4月19日
SDK emulator directory is missing
摘要: 尝试使用方式一 尝试使用方式二 其中尝试了例如如下的代理地址: Android SDK在线更新镜像服务器android 1.中国科学院开源协会镜像站地址:web ◦IPV4/IPV6: mirrors.opencas.cn 端口:80ubuntu ◦IPV4/IPV6: mirrors.openca
阅读全文
posted @ 2022-04-19 19:01 流年sugar
阅读(8077)
评论(0)
推荐(1)
ionic sqlite-websql 查询结果赋值给界面循环的list字段,界面卡死
摘要: 错误的做法: this.service.getCheckData() .then((tx)=>{ this.list=tx.rows; }); 原因: tx.rows是一个SQLResultSetRowList类型的缓存数据集,是不能直接赋值给一个list集合使用,可以使用它其中的item属性来间接
阅读全文
posted @ 2022-04-19 10:03 流年sugar
阅读(64)
评论(0)
推荐(0)
2022年4月18日
Module not found: Error: Can't resolve '@awesome-cordova-plugins/core' in '\node_modules\@awesome-cordova-plugins\file-transfer\ngx'
摘要: 使用ionic官方的方式安装file-transfer如下: $ ionic cordova plugin add cordova-plugin-file-transfer $ npm install @awesome-cordova-plugins/file-transfer 在引用时报错 后面查
阅读全文
posted @ 2022-04-18 17:29 流年sugar
阅读(700)
评论(0)
推荐(0)
2022年4月13日
vue-"export 'getEllipsisText' was not found in '@antv/util'
摘要: 升级G2的版本后出现警告 解决方法: 删除所有带lock 的文件 如yarn.lock 、pnpm-lock.json 、package-lock.json等文件 再删除环境包node_modules 重行安装环境包 如 使用yarn 安装 yarn install
阅读全文
posted @ 2022-04-13 10:31 流年sugar
阅读(462)
评论(0)
推荐(0)
2022年3月29日
无法连接到web服务器iis
摘要: 出现境况:修改项目的启动地址由https头改为http 处理:修改所有涉及的启动地址的头,删除了项目根目录的.vs文件,并重新生成了解决方案。 解决: 右键启动项目=》属性=》调试(vs2019) 如上两个地址不一致 去掉勾选的启用SSL即可 vs2022 参考:https://cloud.tenc
阅读全文
posted @ 2022-03-29 17:33 流年sugar
阅读(1709)
评论(0)
推荐(0)
2022年3月28日
This module is declared with using 'export =', and can only be used with a default import when using the 'allowSyntheticDefaultImports' flag.
摘要: 异常: 本次是加入图表F2出现异常。 解决方法: 在tsconfig.ts中增加配置 "allowSyntheticDefaultImports": true, //允许从没有默认导出的模块引入 重启编译器(此处用的vscode)
阅读全文
posted @ 2022-03-28 17:18 流年sugar
阅读(1246)
评论(8)
推荐(0)
2022年3月25日
linq 联表查询 多个条件连接
摘要: var result= from a in queryA join b in queryB on new { PNo= a.PNo, Sort= a.Sort } equals new { PNo= b.PNo , Sort = b.Sort } where a.OrderCode == b.Ord
阅读全文
posted @ 2022-03-25 15:45 流年sugar
阅读(749)
评论(0)
推荐(0)
2022年3月21日
Angular G2 自定义图表-使用G2官方的方式
摘要: 升级了angualr项目中的ng-zorro、ng-alain依赖包后发现使用g2-custom方式自定义的图表一直无法自适应宽度,只能手动设置宽的,针对这种情况解决方案有以下两种 方式一: 需要单独安装G2官方的包 package.js 具体的设置如下 使用DOM元素(以柱状图为例) html <
阅读全文
posted @ 2022-03-21 17:46 流年sugar
阅读(432)
评论(0)
推荐(0)
2022年3月16日
钉钉小程序更改键盘的开始为搜索(SearchBar)
摘要: 使用组件: SearchBar 方式: 在SearchBar的原始代码中input输入框中加入属性 type="search"
阅读全文
posted @ 2022-03-16 11:36 流年sugar
阅读(276)
评论(0)
推荐(0)
上一页
1
···
17
18
19
20
21
22
23
24
25
···
35
下一页
公告