摘要: 1.import echarts from 'echarts'; 2. options = { backgroundColor: '#fff', xAxis: { type: 'category', boundaryGap: false, data: xValue, }, yAxis: { type 阅读全文
posted @ 2020-01-10 17:22 进军码农 阅读(528) 评论(0) 推荐(0) 编辑
摘要: windows系统解决方法 在Windows中,以管理员身份运行:“ taskkill -f -im node*”,不要带引号。这将停止每个节点进程。 然后再清除浏览器缓存。 阅读全文
posted @ 2020-01-08 14:39 进军码农 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 2020.1.06更新 新版破解IDE方法(压缩后查看文件里的pdf教程) 链接:https://pan.baidu.com/s/1IeA0GrHHJ9rKEzK3bgTCyQ 提取码:0z7o 2019 网址里面有 lookdiv.com 里面的钥匙就是lookdiv.com 阅读全文
posted @ 2019-12-10 10:09 进军码农 阅读(16620) 评论(4) 推荐(1) 编辑
摘要: 更新2019-11-21ionic3原有的功能可以操作 <ion-item-divider sticky> //修改一下默认样式 //需要添加的html/组件</ion-item-divider> //之前的方法不支持ios//ts import {Component, NgZone} from ' 阅读全文
posted @ 2019-11-09 19:44 进军码农 阅读(649) 评论(0) 推荐(0) 编辑
摘要: //都是在原有基础上添加下面import {ViewController} from 'ionic-angular'; constructor(private viewCtrl: ViewController) { this.patchViewControllerContent(this.viewC 阅读全文
posted @ 2019-10-10 16:43 进军码农 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 此模块依赖于dashjs库,您需要安装via npm install dashjs --save并将其包含在.angular-cli.json配置文件中: { ... "apps": [ { ... "scripts": [ "../node_modules/dashjs/dist/dash.all 阅读全文
posted @ 2019-09-11 18:09 进军码农 阅读(996) 评论(0) 推荐(0) 编辑
摘要: 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 进军码农 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: https://aotu.io/notes/2017/11/27/iphonex/index.a 参考网站 阅读全文
posted @ 2019-07-30 15:29 进军码农 阅读(101) 评论(0) 推荐(0) 编辑
摘要: //在子组件添加 ng-5.2.11import { Component, ChangeDetectorRef } from '@angular/core'; constructor(private cdr: ChangeDetectorRef) { } ngAfterViewChecked(){ 阅读全文
posted @ 2019-07-23 20:27 进军码农 阅读(763) 评论(0) 推荐(0) 编辑
摘要: 子组件 import { Component, Input, Output,EventEmitter } from '@angular/core'; @Input() crrunKm: any; @Output() getCrrunKmChange = new EventEmitter<any>() 阅读全文
posted @ 2019-07-17 13:31 进军码农 阅读(2435) 评论(0) 推荐(0) 编辑
摘要: 【常用APP的Url Scheme 前缀】QQ mqq:// 微信是 weixin:// 网易新闻 newsapp:// 淘宝 taobao:// 点评 dianping:// dianping://search 微博 sinaweibo:// weico微博 weico:// 支付宝 alipay 阅读全文
posted @ 2019-07-06 14:10 进军码农 阅读(3900) 评论(0) 推荐(0) 编辑
摘要: 工作环境 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 进军码农 阅读(1263) 评论(0) 推荐(0) 编辑
摘要: 第一步,在项目目录中安装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 进军码农 阅读(1690) 评论(0) 推荐(0) 编辑
摘要: 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 进军码农 阅读(920) 评论(0) 推荐(0) 编辑
摘要: 详细使用看这篇 https://blog.csdn.net/qq_29594393/article/details/76913495 npm地址: https://www.npmjs.com/package/signature_pad 遇到的问题 在网页测试大小尺寸完好,移动端初始化的图片很小 解决 阅读全文
posted @ 2019-06-20 14:49 进军码农 阅读(1574) 评论(0) 推荐(0) 编辑
摘要: 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 进军码农 阅读(13373) 评论(0) 推荐(0) 编辑
摘要: 1.import { DomSanitizer } from "@angular/platform-browser"; //目标页面引入 2.private sanitizer: DomSanitizer //构造函数里 3.<iframe id='docframe' name="admin" [s 阅读全文
posted @ 2019-06-20 11:35 进军码农 阅读(1821) 评论(0) 推荐(0) 编辑
摘要: 先创建组件: ionic g component xxx 在components里面如下图引入 阅读全文
posted @ 2019-04-30 18:26 进军码农 阅读(493) 评论(1) 推荐(0) 编辑
摘要: 1.jdk和sdk的安装以及环境变量配置参考打包详解 上述连接已经从下载安装jdk以及sdk的环境变量配置到打包的流程以及很详细了。但是在我自己安装打包的过程中遇到了这篇文章中没有遇到的问题,下面图文并茂的来阐述一下。 问题1: 问题解决: 配置环境变量 变量名 :_JAVA_OPTIONS 变量值 阅读全文
posted @ 2019-04-25 17:00 进军码农 阅读(651) 评论(0) 推荐(0) 编辑
摘要: webpack 跨域,在这里整理了一下逻辑首先不是为了axios库来进行跨域的,而是直接通过node的webpack设置代理来完成跨域的。 先贴一条自己请求的连接 1、设置自定义域: 在config目录下,找到dev.env.js 文件: 2、设置index 在config目录下找到index.js 阅读全文
posted @ 2019-04-11 13:28 进军码农 阅读(1933) 评论(1) 推荐(0) 编辑