Ionic3
wu_zz
这个作者很懒,什么都没留下…
展开
-
<ion-input>文本框中内容被选中能否实现?
最近在使用ionic3做安卓手持时,因业务需要用户频繁扫描条形码,为了提高用户体验,想把用户输入后的文本内容选中,这样下一次输入时就可以直接覆盖原有内容,而不用手工删除。那么问题来了?ionic3中封装了input标签即这个坑货ion-input是没有效果的,需要换成input标签。在HTML中对元素添加引用myInput:type="text" #barcode>原创 2018-02-02 08:25:37 · 1547 阅读 · 0 评论 -
cordova 添加插件时报错相关问题
Error: Failed to fetch platform androidProbably this is either a connection problem, or platform spec is incorrect.Check your connection and platform name/version/URL.Error: tunneling socket cou转载 2018-02-02 15:08:45 · 2029 阅读 · 0 评论 -
ionic3根页面设置问题、menu侧滑按钮不显示和显示按钮不显示遮罩层的问题
一:根页面设置原来APP开始启动时,我将登录页设置为rootPage,登录成功后我跳转到home界面的方法如下:this.modalCtrl.create(TabsPage);modal.present();这种方式并没有将App的根页面转换为TabsPage,以至于后期我想加入一个侧滑菜单时,需要重新设置TabsPage为根页面,否则menuToggle按钮不会显示,解决方案如下: this.原创 2018-01-19 09:00:43 · 2463 阅读 · 0 评论 -
node-sass问题解决 An error occurred while running npm install
An error occurred while running npm install (exit code 1): npm WARN deprecated object-keys@0.2.0: Please update to the latest object-keys npm WARN prefer global no...转载 2018-02-26 17:40:05 · 426 阅读 · 0 评论 -
ionic3项目版本更新下载
/** * 获得当前app版本号,如0.01 * @description 对应/config.xml中version的值 * @returns {Promise} */ getVersionNumber(): Promise { return new Promise((resolve) => {转载 2018-02-07 16:38:41 · 1219 阅读 · 3 评论 -
执行ionic cordova build命令报- unable to find attribute android:fontVariationSettings and android:ttcInde
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:fontVariationSettingsERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:ttcIndex...转载 2018-03-11 17:22:07 · 3599 阅读 · 0 评论 -
ionic3遇到的刷新页面服务器关闭的问题
启动使用ionic serve启动服务器之后只要一刷新界面就会导致服务器关闭,报的错误如下:events.js:136throw er; // Unhandled 'error' event^Error: read ECONNRESETat _errnoException (util.js:999:13)at TCP.onread (net.js:629:25)删除node_modul...转载 2018-06-13 10:18:43 · 456 阅读 · 1 评论 -
Ionic3创建项目时报错问题
执行创建项目ionic start语句后报错如下:网上查了下导致错误原因是Ionic版本所致,当前版本为3.20.0解决方案:回退Ionic 3.9.2就可以了,命令:npm install -g ionic@3.9.2...转载 2018-06-08 15:17:24 · 912 阅读 · 0 评论