Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/72.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 为什么angularjs路由器不在这里工作?_Javascript_Html_Angularjs_Url_Ionic Framework - Fatal编程技术网

Javascript 为什么angularjs路由器不在这里工作?

Javascript 为什么angularjs路由器不在这里工作?,javascript,html,angularjs,url,ionic-framework,Javascript,Html,Angularjs,Url,Ionic Framework,我通过以下方式安装了ionic: npm install ionic ionic start hello blank cd hello ionic platform add android ionic build android ionic serve 它工作得很好 然后我试着编译这段代码: 我刚刚复制并粘贴了index.html中的html和app.js中的js,并在html中添加了script标记。但我的控制台中出现以下错误,并且该页面不显示: GET http://code.ionicf

我通过以下方式安装了ionic:

npm install ionic
ionic start hello blank
cd hello
ionic platform add android
ionic build android
ionic serve
它工作得很好

然后我试着编译这段代码:

我刚刚复制并粘贴了index.html中的html和app.js中的js,并在html中添加了script标记。但我的控制台中出现以下错误,并且该页面不显示:

GET http://code.ionicframework.com/1.0.0-beta.12/js/performance-now.map 404 (Not Found) (index):158
GET http://192.168.1.136:8100/contact.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/nav-stack.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/about.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/facts2.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/facts.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/sign-in.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/home.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/tabs.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/forgot-password.html 404 (Not Found) ionic.bundle.js:15978
GET http://192.168.1.136:8100/sign-in.html 404 (Not Found) ionic.bundle.js:15978

这是怎么回事?为什么在我的codepen中工作,而我的localhost没有正确解释angularjs的假URL?

看来您没有在index.html中包含脚本模板,否则控制台中无法显示404

可能丢失的脚本标记:

 <script id="templates/tabs.html" type="text/ng-template">
   <ion-tabs class="tabs-icon-top tabs-positive">

    <ion-tab title="Home" icon="ion-home" href="#/tab/home">
      <ion-nav-view name="home-tab"></ion-nav-view>
    </ion-tab>

    <ion-tab title="About" icon="ion-ios7-information" href="#/tab/about">
      <ion-nav-view name="about-tab"></ion-nav-view>
    </ion-tab>

    <ion-tab title="Contact" icon="ion-ios7-world" ui-sref="tabs.contact">
      <ion-nav-view name="contact-tab"></ion-nav-view>
    </ion-tab>

  </ion-tabs>
</script>

<script id="templates/home.html" type="text/ng-template">
  <ion-view title="Home">
    <ion-content class="padding">
      <p>Example of Ionic tabs. Navigate to each tab, and
      navigate to child views of each tab and notice how
      each tab has its own navigation history.</p>
      <p>
        <a class="button icon icon-right ion-chevron-right" href="#/tab/facts">Scientific Facts</a>
      </p>
    </ion-content>
  </ion-view>
</script>

<script id="templates/facts.html" type="text/ng-template">
  <ion-view title="Facts">
    <ion-content class="padding">
      <p>Banging your head against a wall uses 150 calories an hour.</p>
      <p>Dogs have four toes on their hind feet, and five on their front feet.</p>
      <p>The ant can lift 50 times its own weight, can pull 30 times its own weight and always falls over on its right side when intoxicated.</p>
      <p>A cockroach will live nine days without it's head, before it starves to death.</p>
      <p>Polar bears are left handed.</p>
      <p>
        <a class="button icon ion-home" href="#/tab/home"> Home</a>
        <a class="button icon icon-right ion-chevron-right" href="#/tab/facts2">More Facts</a>
      </p>
    </ion-content>
  </ion-view>
</script>

<script id="templates/facts2.html" type="text/ng-template">
  <ion-view title="Also Factual">
    <ion-content class="padding">
      <p>111,111,111 x 111,111,111 = 12,345,678,987,654,321</p>
      <p>1 in every 4 Americans has appeared on T.V.</p>
      <p>11% of the world is left-handed.</p>
      <p>1 in 8 Americans has worked at a McDonalds restaurant.</p>
      <p>$283,200 is the absolute highest amount of money you can win on Jeopardy.</p>
      <p>101 Dalmatians, Peter Pan, Lady and the Tramp, and Mulan are the only Disney cartoons where both parents are present and don't die throughout the movie.</p>
      <p>
        <a class="button icon ion-home" href="#/tab/home"> Home</a>
        <a class="button icon ion-chevron-left" href="#/tab/facts"> Scientific Facts</a>
      </p>
    </ion-content>
  </ion-view>
</script>

<script id="templates/about.html" type="text/ng-template">
  <ion-view title="About">
    <ion-content class="padding">
      <h3>Create hybrid mobile apps with the web technologies you love.</h3>
      <p>Free and open source, Ionic offers a library of mobile-optimized HTML, CSS and JS components for building highly interactive apps.</p>
      <p>Built with Sass and optimized for AngularJS.</p>
      <p>
        <a class="button icon icon-right ion-chevron-right" href="#/tab/navstack">Tabs Nav Stack</a>
      </p>
    </ion-content>
  </ion-view>
</script>

<script id="templates/nav-stack.html" type="text/ng-template">
  <ion-view title="Tab Nav Stack">
    <ion-content class="padding">
      <p><img src="http://ionicframework.com/img/diagrams/tabs-nav-stack.png" style="width:100%"></p>
    </ion-content>
  </ion-view>
</script>

<script id="templates/contact.html" type="text/ng-template">
  <ion-view title="Contact">
    <ion-content>
      <div class="list">
        <div class="item">
          @IonicFramework
        </div>
        <div class="item">
          @DriftyTeam
        </div>
      </div>
    </ion-content>
  </ion-view>
</script>

离子标签的示例。导航到每个选项卡,然后
导航到每个选项卡的子视图并注意如何
每个选项卡都有自己的导航历史记录

你的头撞在墙上每小时消耗150卡路里

狗的后脚有四个脚趾,前脚有五个脚趾

蚂蚁可以举起50倍于自身重量的物体,可以拉动30倍于自身重量的物体,并且在醉酒时总是从右侧跌倒

蟑螂在饿死之前,无头可活九天

北极熊是左撇子

111111111 x 111111111=12345678987654321

每四个美国人中就有一个上过电视

世界上11%的人是左撇子

八分之一的美国人在麦当劳餐厅工作过

283200美元是你在《危险品》中所能赢得的绝对最高金额

101达尔马提亚、彼得·潘、夫人和流浪汉以及木兰是迪士尼唯一一部双亲都在场且在整部电影中都没有死亡的动画片

使用您喜爱的网络技术创建混合移动应用程序。 爱奥尼亚免费开源,提供了一个移动优化HTML、CSS和JS组件库,用于构建高度互动的应用程序

使用Sass构建,并针对AngularJS进行优化

@离子骨架 @浮云

您是否也添加了所有模板,正如上面提到的404脚本模板一样是的,我已经添加了它。我粘贴了你的代码,现在可以工作了。魔术