I have the following javascript variable defined and need to pass the memId value into AngularJs init function.
<script type="text/javascript">
var memId = "bb7de28f-0f89-4f14-8575-d494203acec7";
</script>
<div id="content-header" class="mini" ng-init="getMember(memId)">
I am getting an error : memId is not defined.
Console shows the memId value inside ng-init is not getting passed in.
How can I pass in the javascript variable into ng-init?
You need to do it in the "angular" way by using $window
:
var app = angular.module('myapp', []);
app.controller('MainCtrl', ['$scope', '$window', function($scope, $window) {
$scope.memId = $window.memId;
}]);
Demo: http://codepen.io/qwertynl/pen/jqIrK
Currently Your variables are bounded to window object. You can use Angular $window to access global window object
// Your Global Variable defined outside angular
var memId = "bb7de28f-0f89-4f14-8575-d494203acec7";
//Define Module
var app = angular.module('myapp', []);
//Define Controller
app.controller('MyCtrl', ['$scope', '$window',
function($scope, $window) {
$scope.memId = $window.memId;
}
]);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With