gpt4 book ai didi

xcode - ionic 无法加载网页,错误为 : Could not connect to the server

转载 作者:行者123 更新时间:2023-12-03 07:52:47 28 4
gpt4 key购买 nike

更新到 Xcode 6 和 iOS 8 后,我遇到了 Ionic 项目的问题。

尝试运行项目时,我在 Xcode 中收到以下错误:

Failed to load webpage with error: Could not connect to the server.

完整的日志是:
2014-10-11 14:08:29.468 test[23293:109668] Apache Cordova native platform version 3.6.3 is starting.
2014-10-11 14:08:29.469 test[23293:109668] Multi-tasking -> Device: YES, App: YES
2014-10-11 14:08:29.495 test[23293:109668] Unlimited access to network resources
2014-10-11 14:08:29.866 test[23293:109668] [CDVTimer][keyboard] 0.079989ms
2014-10-11 14:08:29.866 test[23293:109668] [CDVTimer][TotalPluginStartup] 0.284970ms
2014-10-11 14:08:30.721 test[23293:109668] Resetting plugins due to page load.
2014-10-11 14:08:30.764 test[23293:109668] Failed to load webpage with error: Could not connect to the server.

即使在尝试更新 Ionic 和 Cordova 并开始新项目时,此错误也会不断弹出。

我找不到任何带有此特定错误的线程,我不确定这是 iOS 8 兼容性问题还是我的设置有问题。

谢谢!

编辑:

关于 index.html 和 app.js 内容的更多信息

索引.html:
<!DOCTYPE html>
<html ng-app="app" ng-controller="AppCtrl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

<!-- compiled CSS -->
<link rel="stylesheet" type="text/css" href="assets/app-0.0.1.css" />

<!-- compiled JavaScript -->
<script type="text/javascript" src="src/app/app.js"></script>

<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>
</head>
<body >
<ion-nav-view></ion-nav-view>


<!-- Load deferred scripts -->

<!-- Google Maps -->
<script src='http://maps.googleapis.com/maps/api/js?sensor=true&callback=googleMapsLoaded' defer async></script>
</body>
</html>

和 app.js(在使用 ngbp 与其余文件编译之前):
angular.module( 'app', [
'ionic',

// Common requirements
'templates-app',
'templates-common',

// Common Components
'app.auth',

// All page modules
'app.businesses',
'app.business',
'app.search',
'app.branch',
'app.profile',
'app.feed',

// Other dependencies
'ui.router'
])

.config(['$stateProvider', '$urlRouterProvider', function myAppConfig ($stateProvider, $urlRouterProvider) {
$stateProvider
.state('app', {
url: "/app",
abstract: true,
templateUrl: "menu/menu.tpl.html",
controller: 'AppCtrl'
});

$urlRouterProvider.otherwise( 'app/feed' );
}])

.run(['$ionicPlatform', 'appAuthService', '$sessionStorage', function($ionicPlatform, appAuthService, $sessionStorage) {
// Initialize ionic styles
$ionicPlatform.ready(function() {
if(window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
StatusBar.styleLightContent();
}
});

// Initialize app authentication service
appAuthService.init();

// Initialize a session cache validation object
$sessionStorage.updated = {};
}])

.controller( 'AppCtrl', ['$scope', '$location', function AppCtrl ($scope, $location) {

}])

;

最佳答案

我有同样的问题。

我通过Xcode打开了平台文件夹中的ios项目,但我忘记了Xcode文件夹中的代码库不是最新的,因此被破坏了。

要在 Xcode 项目中获取新代码,请使用以下命令:

ionic cordova prepare ios

如果您的问题与我的问题根源相同,那么这应该会有所帮助。

关于xcode - ionic 无法加载网页,错误为 : Could not connect to the server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26314005/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com