0

我已将我的 ionic 2 版本更新为稳定版。

在给ionic start myProject blank --v2之后,我得到了像 ionic 1 这样的文件夹结构。看看我得到的文件夹结构

这是我的离子信息命令结果

Cordova CLI: 6.3.0
Ionic CLI Version: 2.1.0
Ionic App Lib Version: 2.1.0-beta.1
OS: Distributor ID: Ubuntu Description: Ubuntu 16.04.1 LTS 
Node Version: v4.2.6

这是我的package.json文件

{
  "name": "ionic-hello-world",
  "author": "Ionic Framework",
  "homepage": "http://ionicframework.com/",
  "private": true,
  "scripts": {
    "build": "ionic-app-scripts build",
    "watch": "ionic-app-scripts watch",
    "serve:before": "watch",
    "emulate:before": "build",
    "deploy:before": "build",
    "build:before": "build",
    "run:before": "build"
  },
  "dependencies": {
    "ionic-angular": "^2.0.0-rc.0",
    "ionicons": "^3.0.0",
    "@ionic/storage": "^1.0.3",
    "ionic-native": "^2.0.3"
  },
  "devDependencies": {
    "@ionic/app-scripts": "^0.0.23",
    "typescript": "^2.0.3"
  },
  "description": "myProject: An Ionic project",
  "cordovaPlugins": [
    "cordova-plugin-device",
    "cordova-plugin-console",
    "cordova-plugin-whitelist",
    "cordova-plugin-splashscreen",
    "cordova-plugin-statusbar",
    "ionic-plugin-keyboard"
  ],
  "cordovaPlatforms": []
}

问题:

更新我的 ionic 2 并尝试创建一个项目后,当我看到我无法看到我的应用程序文件夹的结构时。为什么 ???

当我给出ionic serve --lab命令时,我相信我正在加载index.html文件。如果是这样,我如何将我的不稳定应用程序文件夹指示到现有(更新的稳定版本)项目

任何人都可以冷藏我以了解结构。我相信它类似于 ionic 1。但我已经完成了我的项目到 ionic 2(不稳定)。但现在结构不同了。那么我该如何利用它。

4

2 回答 2

0

这是正确的行为,RC 0 中的目录结构已更改。该src文件夹将包含所有源文件和资产,并且该www文件夹已完全生成。

于 2016-10-07T17:14:24.627 回答
0

遵循https://github.com/driftyco/ionic/blob/master/CHANGELOG.md#steps-to-upgrade-to-rc0

我能够解决我的问题

于 2016-10-16T07:36:07.593 回答