Questions tagged «ionic2»

17
错误:使用Ionic时找不到模块'../lib/utils/unsupported.js'
当我运行“离子启动项目名称”时,我总是收到此错误消息: 错误信息 Running command - failed![ERROR] An error occurred while running npm install (exit code 1): module.js:471 throw err; ^ Error: Cannot find module '../lib/utils/unsupported.js' at Function.Module._resolveFilename (module.js:469:15) at Function.Module._load (module.js:417:25) at Module.require (module.js:497:17) at require (internal/module.js:20:19) at /usr/local/lib/node_modules/npm/bin/npm-cli.js:19:21 at Object.<anonymous> (/usr/local/lib/node_modules/npm/bin/npm-cli.js:79:3) at Module._compile (module.js:570:32) at Object.Module._extensions..js (module.js:579:10) at Module.load …

23
ionic 2-错误在Android Studio中都找不到Gradle的安装版本
我创建了ionic 2项目,并添加了如下的诊断cordova插件: ionic plugin add cordova.plugins.diagnostic npm install --save @ionic-native/diagnostic 并添加android平台,如下所示: ionic platform add android@latest 但是当使用ionic build android控制台构建时,出现此错误: Error: Could not find an installed version of Gradle either in Android Studio, or on your system to install the gradle wrapper. Please include gradle in your path, or install Android Studio …

1
导入两个具有相同名称的导出类
在打字稿中,使用Angular 2,我需要导入两个具有相同名称但位于不同路径的类。 该项目太大,以至于我很难更改导出的类名。 有什么办法别名导入的类, import {Class1} from '../location1/class1' import {Class1} from '../location2/class1'

16
组件是2个模块声明的一部分
我尝试构建一个ionic 2应用程序。当我在使用离子服务的浏览器中尝试该应用程序或在模拟器上启动该应用程序时,一切正常。 但是当我每次尝试构建它时都会出错 ionic-app-script tast: "build" Error Type AddEvent in "PATH"/add.event.ts is part of the declarations of 2 modules: AppModule in "PATH"/app.modules.ts and AddEvent in "PATH"/add-event.module.ts. Please consider moving AddEvent in "PATH"/add-event.ts to a higher module that imports AppModule in "PATH"/app.module.ts and AddEventModule. You can also creat a new NgModule …

3
Ionic指令与Ionic Framework的Angular材质指令
我想在材料设计中使用离子。我被困在将离子指令与自定义CSS和angular-material结合使用之间 我已经读到,使用离子指令,我们可以获得许多有效的功能,例如 即使导航到其他视图并返回到页面,也可以使用UI-router记住应用数据 离子列表项仅在显示高度时呈现,并在向下或向上滚动时重新使用 并改善了许多性能。 但是,如果我使用离子指令,则它们没有材料设计。 如果我使用角形材料,则不会获得这些性能改进,也不会具有移动应用程序所需的其他功能。 角材料指令就像 <md-list> <md-item ng-repeat="item in items"> Hello, {{item}}! </md-item> </md-list> 离子指令就像 <ion-list> <ion-item ng-repeat="item in items"> Hello, {{item}}! </ion-item> </ion-list> 看起来Ionic正在资助角材料项目的开发,那么为什么角材料与离子材料不兼容? 如何在不损失离子性能和特性的情况下使用角材料组件? 要么 使用离子材料设计会更好吗?

20
ADB安装失败:INSTALL_CANCELED_BY_USER
我尝试通过adb安装应用并收到错误消息: $ ./adb -d install /Users/dimon/Projects/one-place/myprogram/platforms/android/build/outputs/apk/android-debug.apk -r -g 3704 KB/s (4595985 bytes in 1.211s) pkg: /data/local/tmp/android-debug.apk Failure [INSTALL_CANCELED_BY_USER] 在装置中,此刻我什么也不做。设备是小米MI5,MIUI 7.2.13,Android 6.0。开发人员模式已启用。如何解决这个问题? 我在尝试运行“ ionic run android”命令时遇到的相同错误。 UPD 这是安装程序中来自“ adb logcat”命令的日志: 06-06 10:04:20.051 788 903 I DisplayFeatureService: void android::update_watchlist(const prop_info*, void*): sys.boot_completed: 1 06-06 10:04:20.063 788 903 I DisplayFeatureService: void android::update_watchlist(const prop_info*, …
91 android  adb  ionic2 

8
如何使用* ngFor迭代对象键
我想在Angular 2中使用* ngFor迭代[object object]。问题是对象不是对象数组,而是包含更多对象的对象对象。 { "data": { "id": 834, "first_name": "GS", "last_name": "Shahid", "phone": "03215110224", "role": null, "email": "test@example.com", "picture": **{ <-- I want to get thumb: url but not able to fetch that** "url": null, "thumb": { "url": null } }, "address": "Nishtar Colony", "city_id": 2, "provider": "email", "uid": …
76 angular  ionic2 

4
如何在* ngFor中设置动态ID?
如何id在Angular 2中设置动态? 我试过了: <div class = "CirclePoint" *ngFor="#c of circles" id = "{{ 'Location' + c.id }}"></div> this.circles = [ { x: 50 , y: 50 ,id : "oyut1" }, { x: 100 , y: 100 ,id : "oyut3" }, { x: 150 , y: 150 ,id : "oyut2" } …
70 angular  ionic2 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.