会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
进军码农
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2020年1月10日
angular5使用echart渐变色功能
摘要: 1.import echarts from 'echarts'; 2. options = { backgroundColor: '#fff', xAxis: { type: 'category', boundaryGap: false, data: xValue, }, yAxis: { type
阅读全文
posted @ 2020-01-10 17:22 进军码农
阅读(536)
评论(0)
推荐(0)
2020年1月8日
Ionic serve error Cannot read property ‘call’ of undefined
摘要: windows系统解决方法 在Windows中,以管理员身份运行:“ taskkill -f -im node*”,不要带引号。这将停止每个节点进程。 然后再清除浏览器缓存。
阅读全文
posted @ 2020-01-08 14:39 进军码农
阅读(320)
评论(0)
推荐(0)
2019年12月10日
webstorm最新激活码2019
摘要: 2020.1.06更新 新版破解IDE方法(压缩后查看文件里的pdf教程) 链接:https://pan.baidu.com/s/1IeA0GrHHJ9rKEzK3bgTCyQ 提取码:0z7o 2019 网址里面有 lookdiv.com 里面的钥匙就是lookdiv.com
阅读全文
posted @ 2019-12-10 10:09 进军码农
阅读(16705)
评论(4)
推荐(1)
2019年11月9日
ionic3 angular5 动态固定元素在屏幕位置
摘要: 更新2019-11-21ionic3原有的功能可以操作 <ion-item-divider sticky> //修改一下默认样式 //需要添加的html/组件</ion-item-divider> //之前的方法不支持ios//ts import {Component, NgZone} from '
阅读全文
posted @ 2019-11-09 19:44 进军码农
阅读(661)
评论(0)
推荐(0)
2019年10月10日
ionic3解决多个ion-content push pop动画效果问题(含有侧边栏)
摘要: //都是在原有基础上添加下面import {ViewController} from 'ionic-angular'; constructor(private viewCtrl: ViewController) { this.patchViewControllerContent(this.viewC
阅读全文
posted @ 2019-10-10 16:43 进军码农
阅读(343)
评论(0)
推荐(0)
2019年9月11日
ionic3引入第三方js
摘要: 此模块依赖于dashjs库,您需要安装via npm install dashjs --save并将其包含在.angular-cli.json配置文件中: { ... "apps": [ { ... "scripts": [ "../node_modules/dashjs/dist/dash.all
阅读全文
posted @ 2019-09-11 18:09 进军码农
阅读(1012)
评论(0)
推荐(0)
2019年8月10日
ionic3+angular5查看pdf
摘要: 1.ng2-pdf-viewer npm install ng2-pdf-viewer --save //版本3.0.8在app.module.ts引入 //PDFimport {PdfViewerModule} from 'ng2-pdf-viewer'; imports: [ //这里只引入此模
阅读全文
posted @ 2019-08-10 18:57 进军码农
阅读(1079)
评论(0)
推荐(0)
2019年7月30日
app适配iponex
摘要: https://aotu.io/notes/2017/11/27/iphonex/index.a 参考网站
阅读全文
posted @ 2019-07-30 15:29 进军码农
阅读(113)
评论(0)
推荐(0)
2019年7月23日
ERROR Error: ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: ''. Current value: 'something'
摘要: //在子组件添加 ng-5.2.11import { Component, ChangeDetectorRef } from '@angular/core'; constructor(private cdr: ChangeDetectorRef) { } ngAfterViewChecked(){
阅读全文
posted @ 2019-07-23 20:27 进军码农
阅读(771)
评论(0)
推荐(0)
2019年7月17日
angular5子组件值变更,父组件监听改变回调
摘要: 子组件 import { Component, Input, Output,EventEmitter } from '@angular/core'; @Input() crrunKm: any; @Output() getCrrunKmChange = new EventEmitter<any>()
阅读全文
posted @ 2019-07-17 13:31 进军码农
阅读(2457)
评论(0)
推荐(0)
2019年7月6日
常用APP的Url Scheme 前缀
摘要: 【常用APP的Url Scheme 前缀】QQ mqq:// 微信是 weixin:// 网易新闻 newsapp:// 淘宝 taobao:// 点评 dianping:// dianping://search 微博 sinaweibo:// weico微博 weico:// 支付宝 alipay
阅读全文
posted @ 2019-07-06 14:10 进军码农
阅读(4198)
评论(0)
推荐(0)
2019年7月1日
ionic使用videojs观看视频
摘要: 工作环境 ionic3+angular5 使用video标签播放 1.首先安装模块 npm install videogular2@6.1.1 --save npm install @types/core-js --save-dev 2.其次在使用页面xxx.module.ts里引入模块 impor
阅读全文
posted @ 2019-07-01 10:56 进军码农
阅读(1300)
评论(0)
推荐(0)
2019年6月28日
ionic3查看pdf文件
摘要: 第一步,在项目目录中安装pdf.js组件 npm i pdfjs-dist@1.9.607 (高版本会报错) npm install ‑‑save‑dev @types/pdfjs‑dist 第二步 安装ng2-pdf-viewer@3.0.8 (项目angular版本为4.x以下安装此版本) 第三
阅读全文
posted @ 2019-06-28 17:33 进军码农
阅读(1758)
评论(0)
推荐(0)
2019年6月22日
ionic3生产打包javascript内存溢出的解决方法
摘要: 1.将其添加到package.json脚本中 "ionic:build": "node --max-old-space-size=8192 ./node_modules/@ionic/app-scripts/bin/ionic-app-scripts.js build" 2.运行命令:npm run
阅读全文
posted @ 2019-06-22 15:55 进军码农
阅读(937)
评论(0)
推荐(0)
2019年6月20日
angular2-signaturepad使用
摘要: 详细使用看这篇 https://blog.csdn.net/qq_29594393/article/details/76913495 npm地址: https://www.npmjs.com/package/signature_pad 遇到的问题 在网页测试大小尺寸完好,移动端初始化的图片很小 解决
阅读全文
posted @ 2019-06-20 14:49 进军码农
阅读(1635)
评论(0)
推荐(0)
css设置英文字符自动换行
摘要: html:<p class="puma-common-title">22874474aa_PuMA_Searching_for_Measures_EN.pdf</p>css: word-wrap: break-word;white-space: normal;word-break: break-al
阅读全文
posted @ 2019-06-20 14:11 进军码农
阅读(13397)
评论(0)
推荐(0)
ionic3 页面嵌入iframe浏览第三方页面返回操作
摘要: 1.import { DomSanitizer } from "@angular/platform-browser"; //目标页面引入 2.private sanitizer: DomSanitizer //构造函数里 3.<iframe id='docframe' name="admin" [s
阅读全文
posted @ 2019-06-20 11:35 进军码农
阅读(1869)
评论(0)
推荐(0)
2019年4月30日
在ionic3自定义组件中使用官方组件
摘要: 先创建组件: ionic g component xxx 在components里面如下图引入
阅读全文
posted @ 2019-04-30 18:26 进军码农
阅读(504)
评论(1)
推荐(0)
2019年4月25日
ionic3打包打包安卓apk详细过程以及遇到的问题
摘要: 1.jdk和sdk的安装以及环境变量配置参考打包详解 上述连接已经从下载安装jdk以及sdk的环境变量配置到打包的流程以及很详细了。但是在我自己安装打包的过程中遇到了这篇文章中没有遇到的问题,下面图文并茂的来阐述一下。 问题1: 问题解决: 配置环境变量 变量名 :_JAVA_OPTIONS 变量值
阅读全文
posted @ 2019-04-25 17:00 进军码农
阅读(670)
评论(0)
推荐(0)
2019年4月11日
webpack+vue解决前端跨域问题
摘要: webpack 跨域,在这里整理了一下逻辑首先不是为了axios库来进行跨域的,而是直接通过node的webpack设置代理来完成跨域的。 先贴一条自己请求的连接 1、设置自定义域: 在config目录下,找到dev.env.js 文件: 2、设置index 在config目录下找到index.js
阅读全文
posted @ 2019-04-11 13:28 进军码农
阅读(1965)
评论(1)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告