angular js页面传递参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular js页面传递参数相关的知识,希望对你有一定的参考价值。

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页面传递参数的主要内容,如果未能解决你的问题,请参考以下文章

如何在页面之间传递Angular中的参数

flutter 跳转页面传递参数 返回页面带参数

angularJS使用ocLazyLoad实现js延迟加载

Jquery跳转页面传递参数以及获取url的参数

Vue.js中子组件向父组件传递信息。

如何将参数从 Angular 2 服务传递到节点 js 函数?意思是