私は、2つの状態(メインとチェックアウト)を持つウェブサイトを定義するために、angle-ui-routerを使って自分のアプリケーションをモジュレーションしようとしています。メインステートには、ui-viewアイテムとして定義しようとする複数の「セクション」タグが必要です。私は自分のルート設定で何が問題なのかは分からないが、main.htmlがロードされていないと感じる。私の定義で...私はsecionsのビューを使用しないよう、ちょうどNG-含んを使用することができますいただきました!間違って上の任意のアドバイス...2つの状態が1つのビュービューに定義されています
routes.js
app.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/main');
$stateProvider
.state('main', {
url: '/main',
controller: 'MainCtrl',
templateUrl: 'templates/main.html',
views:{
'home': {
templateUrl: 'templates/main.home.html'
},
'about': {
templateUrl: 'templates/main.about.html'
},
'services': {
templateUrl: 'templates/main.services.html'
},
'shop': {
templateUrl: 'templates/main.shop.html',
controller: 'ShopCtrl'
}
}
})
.state('checkout', {
url: '/checkout',
templateUrl: 'templates/checkout.html',
controller: 'CheckoutCtrl'
});
index.htmlを
<div ui-view id="app-ui-view"></div>
テンプレート/ main.htmlを
<section ui-view="home" id="home"></section>
<section ui-view="about" id="about"></section>
<section ui-view="services" id="services"></section>
<section ui-view="shop" id="shop"></section>
基本的にページはロードされますが、メインまたはチェックアウト状態はロードされません。どのように物事が間違って入れ子ですか?
ありがとう:
ので、主な状態は、この定義を持っている必要があります。これは、メインページのすべてではなく、最初のビューを「ホーム」にレンダリングするように見えます。 – rex
ここがソリューションであることを証明するプランカーです。https://plnkr.co/edit/N1RzdjsebV7Zz9fTGopQ?p=preview – rave