码迷,mamicode.com
首页 > Web开发 > 详细

angular js页面传递参数

时间:2017-09-11 12:23:33      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:code   ams   参数   color   outer   state   config   module   class   

var myapp=angular.module("myApp",["ngRoute","ui.router"]);
myapp.controller("FCtrl",function($scope,$state){
     $scope.toSecound=function(name){
           $scope.go("secound",{"name":name});
    }
});
myapp.controller("SCtrl",function($scope,$state,$stateParams){
     $scope.toSecound=function(name){
           $scope.name=$stateParams.name;
    }
});
myapp.config(function($stateProvider, $urlRouterProvider){
   $stateProvider
   .state("first",{
        url:"/first",
    templateUrl:"servicing/first.html",
    controller:"FCtrl" 
    })
    .state("first",{
        url:"/secound",
    templateUrl:"servicing/secound.html",
    controller:"SCtrl" 
    })
}

 

angular js页面传递参数

标签:code   ams   参数   color   outer   state   config   module   class   

原文地址:http://www.cnblogs.com/xiudu/p/7504063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!