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