欢迎来到代码驿站!

AngularJS

当前位置:首页 > 网页前端 > AngularJS

angularjs路由传值$routeParams详解

时间:2021-03-29 09:44:07|栏目:AngularJS|点击:

AngularJS利用路由传值,供大家参考,具体内容如下 

1.导包

 <script src="angular.min.js"></script>
 <script src="angular-route.js"></script>

2.依赖注入ngRoute

var myapp=angular.module("myapp",["ngRoute"]);

3.配置路由

myapp.config(function ($routeProvider) {
   //页面选择
   $routeProvider.when("/home",{
//    template:"<h2>这是主页面</h2>"
    templateUrl:"home.html"
   }).when("/about",{
//    template:"<h2>这是关于我们的信息</h2>"
    templateUrl:"about.html"
   }).when("/cel",{
//    template:"<h2>请联系我们</h2>"
    templateUrl:"cel.html",
//    controller:"celCtrl"
   }).when("/cel/:sub",{//传参数
    templateUrl:"cel.html",
    controller:"celCtrl"
   })
  });

4.写cel的控制器

 myapp.controller("celCtrl",function ($scope,$routeParams) {
   //根据传过来的参数给输入框赋值
   var param = $routeParams["sub"];
   if(param=="a"){
    $scope.mname="我想提建议...";
   }else if(param=="b"){
    $scope.mname="我想购买..."
   }
  });

5.通过about页面传值给cel页面

<p>About页面</p>
 <ul>
  <li><a href="#cel/a" rel="external nofollow" >告诉我们</a></li>
  <li><a href="#cel/b" rel="external nofollow" >询价</a></li>

</ul>

修改cel页面的输入框的值

<p>显示页面</p>
 <ul>
  <li><input type="text" placeholder="sub" ng-model="mname"></li>
  <li><input type="text" placeholder="Message" ng-model="minfo"></li>
 </ul>

最后是页面布局

<body ng-app="myapp">
<!--页面布局-->
 <header>
  <p>我的站点</p>
  <div>
   <a href="#home" rel="external nofollow" >主页</a>
   <a href="#about" rel="external nofollow" >关于我们</a>
   <a href="#cel" rel="external nofollow" >联系我们</a>
  </div>
 </header>
 <div ng-view="" class="View"></div>
</body>

看看效果:

  

上一篇:angularJS实现动态添加,删除div方法

栏    目:AngularJS

下一篇:AnglarJs中的上拉加载实现代码

本文标题:angularjs路由传值$routeParams详解

本文地址:http://www.codeinn.net/misctech/90604.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有