app.js 离子框架中的函数冲突

app.js function conflict in ionic framework

我是 ionic 的新手,已经成功安装并测试了我的第一个教程应用程序。我在使用本教程时遇到以下问题 http://ionicframework.com/docs/guide/building.html

当我创建一个空白项目时 'app.js' 是用下面的代码创建的:

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs).
    // The reason we default this to hidden is that native apps don't usually show an accessory bar, at
    // least on iOS. It's a dead giveaway that an app is using a Web View. However, it's sometimes
    // useful especially with forms, though we would prefer giving the user a little more room
    // to interact with the app.
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if(window.StatusBar) {
      // Set the statusbar to use the default style, tweak this to
      // remove the status bar on iOS or change it to use white instead of dark colors.
      StatusBar.styleDefault();
    }
  });
});

但是,除非我删除上面的 js 代码,否则以下代码将无法运行。所以我的问题是:保留上面的代码重要吗?或者我可以取消它吗?如果这很重要,我该如何维护这两个代码。

.controller('TodoCtlr', function($scope){
  $scope.tasks = [
    {title: 'Collect Coins'},
    {title: 'Read books'},
    {title: 'Go home '},
    {title: 'have dinner'}
  ];
});

感谢您的宝贵时间。

在 ionic app.js 中,所有与应用程序相关的模块以及其他应用程序配置都被注入其中。

第一个代码片段是检查设备是否准备就绪,所以我认为你应该放这个。

至于控制器,您可以轻松地将此代码放入 controller.js 文件

只需确保这些文件包含在 index.html

尝试阅读和关注 ionic 文档,因为它们很棒而且写得很好。 http://ionicframework.com/docs/

如果我从 运行 函数代码的最后一行中删除 ;,代码就可以工作。这一行就像文件的结尾,所以如果后面有控制器,它就不会被识别。它应该是这样的:

// run function stuff...
})

.controller('TodoCtlr', function($scope){
// your controller
}); // Here should be the end now!

来源:http://forum.ionicframework.com/t/importance-of-run-function-ionicplatform/17935/3

礼貌:http://forum.ionicframework.com/users/saimon/activity