简体   繁体   English

为什么我的网址在使用角度时包含“!”?

[英]Why does my url contains “!” when using angular?

I just started with MEAN stack and i'm following some TUTs. 我刚开始使用MEAN堆栈,我正在关注一些TUT。

I'm using the npm-views from Angular and trying to redirect an html a tag to another html file. 我使用的是npm-views从角,并试图重定向一个HTML a标签到另一个HTML文件。 However when I go to localhost:3000 I get this: localhost:3000/#!/ and the when I the link inside that page it simply adds localhost:3000/#!/#%2Fsl . 但是,当我转到localhost:3000我得到这个: localhost:3000/#!/当我在该页面内的链接时,它只是添加了localhost:3000/#!/#%2Fsl

My index.html is this (without some elements -- too much text // I removed all the js and css files but I have them all in my file): 我的index.html就是这个(没有一些元素 - 太多的文本//我删除了所有的js和css文件,但我把它们都放在我的文件中):

<!DOCTYPE html>
<html ng-app="firstApp">

<head>

<script type="text/javascript">

var app = angular.module('firstApp',['ngRoute']);

app.config(function($routeProvider){
    $routeProvider
    .when('/', {
        templateUrl: 'home.html',
        controller: 'HomeController',
    })
    .when('/sl', {
        templateUrl: 'sl.html',
        controller: 'SLController',
    });

});

app.controller('HomeController', function ($scope,  $http){
    console.log('Home page');
});

app.controller('SLController', function ($scope, $http){
    console.log('Signup page');
});

</script>
  <title>First Node.JS app</title>

</head>

<body>
    <div class="container-fluid">

    <h1 id="indexTitle"> MyFirst App </h1>
    <div ng-view></div>

    </div>
</body>

</html>

My home.html file is this: 我的home.html文件是这样的:

<div class="container main-forms" id="main-forms">

    <h3 id="letMeIn1"><a href="#/sl" id="letMeIn">Let me in</a></h3>

</div>

and my sl.html file is this: 我的sl.html文件是这样的:

    <div class="container main-forms" id="main-forms">

    <div>

  <!-- Nav tabs -->
      <ul class="nav nav-tabs" role="tablist">
        <li role="presentation" class="active tab-btn"><a href="#login" class="tab-link" id="login1" aria-controls="login" role="tab" data-toggle="tab">Login</a></li>
        <li role="presentation" class="tab-btn"><a href="#signup" class="tab-link" id="signup1" aria-controls="signup" role="tab" data-toggle="tab">Sign Up</a></li>
      </ul>

  <!-- Tab panes -->
      <div class="tab-content">
        <div role="tabpanel" class="tab-pane active" id="login">

            <div class=" row main col-md-6 col-md-offset-3">

                <form class="form-group">

                    <h3 class="form-titles center-block">Login</h3>

                    <input type="text" class="form-control form-subtitles" placeholder="Usuario">

                    <input type="password" class="form-control form-subtitles" placeholder="Password">

                    <input type="submit" class="form-control form-subtitles btn btn-info" value="Login">

                </form>

            </div>


        </div>
        <div role="tabpanel" class="tab-pane" id="signup">
            <div class=" row main col-md-6 col-md-offset-3">

                <form class="form-group">

                    <h3 class="form-titles center-block">Sign Up</h3>

                    <input type="text" class="form-control form-subtitles" placeholder="Usuario">

                    <input type="text" class="form-control form-subtitles" placeholder="E-mail">

                    <input type="password" class="form-control form-subtitles" placeholder="Password">

                    <input type="submit" class="form-control form-subtitles btn btn-info" value="Signup">

                </form>

            </div>
        </div>






      </div>

    </div>

</div>

If the browser is HTML5 browser angularJS will redirect it to #! 如果浏览器是HTML5浏览器,angularJS会将其重定向到#!

Otherwise it will be only #. 否则它只会#。

Read this documentation here on $location to find out more on why this happens. 请在$ location上阅读此文档,以了解更多有关这种情况的原因。

Opening a regular URL in a legacy browser -> redirects to a hashbang 在旧版浏览器中打开常规URL - >重定向到hashbang

URL Opening hashbang URL in a modern browser -> rewrites to a regular URL URL在现代浏览器中打开hashbang URL - >重写为常规URL

HTML5 mode HTML5模式

In HTML5 mode, the $location service getters and setters interact with the browser URL address through the HTML5 history API. 在HTML5模式下, $location服务getter和setter通过HTML5历史API与浏览器URL地址进行交互。 This allows for use of regular URL path and search segments, instead of their hashbang equivalents. 这允许使用常规URL路径和搜索段,而不是它们的hashbang等价物。 If the HTML5 History API is not supported by a browser, the $location service will fall back to using the hashbang URLs automatically. 如果浏览器不支持HTML5历史记录API,则$ location服务将自动回退到使用hashbang网址。 This frees you from having to worry about whether the browser displaying your app supports the history API or not; 这使您不必担心显示您的应用的浏览器是否支持历史记录API; the $location service transparently uses the best available option. $ location服务透明地使用最佳可用选项。

Opening a regular URL in a legacy browser -> redirects to a hashbang URL Opening hashbang URL in a modern browser -> rewrites to a regular URL Note that in this mode, AngularJS intercepts all links (subject to the "Html link rewriting" rules below) and updates the url in a way that never performs a full page reload. 在旧版浏览器中打开常规URL - >重定向到hashbang URL在现代浏览器中打开hashbang URL - >重写为常规URL请注意,在此模式下,AngularJS会拦截所有链接(根据下面的“Html链接重写”规则)并以永不执行整页重新加载的方式更新URL。

Example: 例:

it('should show example', function() {
  module(function($locationProvider) {
    $locationProvider.html5Mode(true);
    $locationProvider.hashPrefix('!');
  });
  inject(function($location) {
    // in browser with HTML5 history support:
    // open http://example.com/#!/a -> rewrite to http://example.com/a
    // (replacing the http://example.com/#!/a history record)
    expect($location.path()).toBe('/a');

    $location.path('/foo');
    expect($location.absUrl()).toBe('http://example.com/foo');

    expect($location.search()).toEqual({});
    $location.search({a: 'b', c: true});
    expect($location.absUrl()).toBe('http://example.com/foo?a=b&c');

    $location.path('/new').search('x=y');
    expect($location.url()).toBe('/new?x=y');
    expect($location.absUrl()).toBe('http://example.com/new?x=y');
  });
});

it('should show example (when browser doesn\'t support HTML5 mode', function() {
  module(function($provide, $locationProvider) {
    $locationProvider.html5Mode(true);
    $locationProvider.hashPrefix('!');
    $provide.value('$sniffer', {history: false});
  });
  inject(initBrowser({ url: 'http://example.com/new?x=y', basePath: '/' }),
    function($location) {
    // in browser without html5 history support:
    // open http://example.com/new?x=y -> redirect to http://example.com/#!/new?x=y
    // (again replacing the http://example.com/new?x=y history item)
    expect($location.path()).toBe('/new');
    expect($location.search()).toEqual({x: 'y'});

    $location.path('/foo/bar');
    expect($location.path()).toBe('/foo/bar');
    expect($location.url()).toBe('/foo/bar?x=y');
    expect($location.absUrl()).toBe('http://example.com/#!/foo/bar?x=y');
  });
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 为什么我的角度资源会忽略特定于操作的网址? - Why does my angular resource ignore the action-specific url? 为什么我的 Angular 站点在发布到 IIS 时会返回一个目录? - Why does my Angular site return a directory when published to IIS? 为什么在使用时Angular绑定失败 <input type=“file”/> ? - Why does Angular binding fail when using <input type=“file”/>? 为什么我的Angular.js $ location.path(url)循环回root? - Why does my Angular.js $location.path(url) loop back to root? 当我将 Tableau 示例中的 URL 更改为另一个 URL 时,为什么我的代码会中断? - Why does my code break when I change the URL in the Tableau sample to another URL? CasperJS:为什么我的网址加载时会更改为:空白? - CasperJS : Why does my url change to about:blank when my page is loaded? 为什么不是我的元素:包含(变量)工作时使用变量而不是字符串? jQuery的 - why isn't my element:contains(variable) work when using variable instead of string? jquery 为什么我的 Angular 属性只有在我从 iframe 调用 postMessage() 方法时才会更新 - Why does my Angular attribute is updated only when I call a postMessage() method from my iframe 当我对src URL进行硬编码时,为什么我的img出现了,但是当我以编程方式分配它时却没有? - Why does my img show up when I hardcode the src URL, but not when I assign it programmatically? 为什么我的外部变量在使用 while 循环时不会改变? - Why does my outer variable not change when using a while loop?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM