在离子中设置默认视图
Posted
技术标签:
【中文标题】在离子中设置默认视图【英文标题】:Set default view in ionic 【发布时间】:2016-01-13 22:38:46 【问题描述】:我被困在一些非常简单的事情上,似乎无法弄清楚我做错了什么。我在 ionic 中创建了一个空白项目,并希望将默认主屏幕设置为加载的第一个视图。当我在浏览器中运行它时,我正盯着一个空白屏幕。
我的代码如下:
app.js
// Ionic Starter App
// angular.module is a global place for creating, registering and retrieving Angular modules
// 'starter' is the name of this angular module example (also set in a <body> attribute in index.html)
// the 2nd parameter is an array of 'requires'
var app = angular.module('starter', ['ionic'])
app.run(function($ionicPlatform)
$ionicPlatform.ready(function()
if(window.cordova && window.cordova.plugins.Keyboard)
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
// Don't remove this line unless you know what you are doing. It stops the viewport
// from snapping when text inputs are focused. Ionic handles this internally for
// a much nicer keyboard experience.
cordova.plugins.Keyboard.disableScroll(true);
if(window.StatusBar)
StatusBar.styleDefault();
);
)
app.config(function ($stateProvider, $urlRouterProvider)
$urlRouterProvider.otherwise('/')
$stateProvider.state('home_screen',
url:'/',
templateUrl: 'home_screen.html'
)
)
home_screen.html
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Home Screen</h1>
</ion-header-bar>
<ion-content>
<div class="spacer" style="height: 100px;"></div>
<div class="col col-33 col-offset-33">
<button class="button button-block button-balanced">Play</button>
</div>
<div class="spacer" style="height: 100px;"></div>
<div class="col col-33 col-offset-33">
<a class="button button-outline button-block button-balanced" href="#/app/about">About</a>
</div>
</ion-content>
</ion-pane>
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>
<!-- your app's js -->
<script src="js/app.js"></script>
</head>
<body ng-app="starter">
<ion-nav-view></ion-nav-view>
</body>
</html>
home_screen.html 当我将它包含在 index.html 中时会正常工作,但当我尝试将其设置为默认视图时不起作用。我尝试按照这里的教程进行操作:
http://learn.ionicframework.com/formulas/navigation-and-routing-part-1/
任何帮助将不胜感激。
【问题讨论】:
【参考方案1】:实际上,您必须在 index.html 文件中取消注释 ion-nav-view
。你甚至不必给它一个名字。尝试将其添加到您的 index.html 文件中:
...
<body ng-app="starter">
<ion-nav-view></ion-nav-view>
</body>
...
要开始使用 ionic,我还建议查看 here 中描述的其他入门项目,例如选项卡或侧边菜单。
【讨论】:
我尝试了您的建议,但默认屏幕仍然是空白的。还有什么我可能做错的吗?我查看了选项卡和侧边菜单,并试图模仿它们,但我仍然缺少一些东西。 是的,当我打开 chrome 开发人员工具时,我得到“加载资源失败:服务器响应状态为 404”localhost:8101/home_screen.html 好的,这可能是因为您的 html 模板的文件名错误或该位置不存在。在您的情况下,它应该直接在您的 www/ 文件夹中 哦,愚蠢的我,是的,你是对的模板/home_screen.html。谢谢!以上是关于在离子中设置默认视图的主要内容,如果未能解决你的问题,请参考以下文章
在 .NET Core Razor 页面和 AJAX 中设置部分页面(视图)搜索路径
在 Scenedelgate 中设置视图控制器后 Xcode 11.5 IOS 13.5 黑屏