最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - generate random id number within angular template just once - Stack Overflow

programmeradmin2浏览0评论

I would like to know the way for generating random id in angular template once the page loads. The problem I am facing is that every second I get different ID in the two spans. I want it to be the same on both places and dont want it to change its value every second. Here is my simple template:

<main class="has-header has-padding">
<div id = "mand">-ID:<span>{{vm.getRandomId()}}</span> -connect  -run</div>
    <hr>
<div id = "mand">-ID:{{vm.getRandomId()}}</div>

my controller:

'use strict';

(function() {
    angular
        .module('myApp')
        .controller('myController.ctrl', myController);

    myController.$inject = ['$scope'];

    function screenSharingCtrl($scope) {
        angular.extend(this, {
            getRandomId:getRandomId
        });

        function getRandomId() {
            return Math.floor((Math.random()*6)+1);
        }
    }
})();

Sorry if it is a duplicate question. Any help is appreciated! Thank you!

I would like to know the way for generating random id in angular template once the page loads. The problem I am facing is that every second I get different ID in the two spans. I want it to be the same on both places and dont want it to change its value every second. Here is my simple template:

<main class="has-header has-padding">
<div id = "mand">-ID:<span>{{vm.getRandomId()}}</span> -connect  -run</div>
    <hr>
<div id = "mand">-ID:{{vm.getRandomId()}}</div>

my controller:

'use strict';

(function() {
    angular
        .module('myApp')
        .controller('myController.ctrl', myController);

    myController.$inject = ['$scope'];

    function screenSharingCtrl($scope) {
        angular.extend(this, {
            getRandomId:getRandomId
        });

        function getRandomId() {
            return Math.floor((Math.random()*6)+1);
        }
    }
})();

Sorry if it is a duplicate question. Any help is appreciated! Thank you!

Share Improve this question asked Aug 19, 2015 at 12:06 skywalkerskywalker 7163 gold badges17 silver badges41 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

just change the binding to

{{ vm.id }}

and your viewmodel to

function screenSharingCtrl($scope) {

        function getRandomId() {
            return Math.floor((Math.random()*6)+1);
        }

        this.id = (typeof this.id === 'undefined') ? getRandomId() : this.id; 
    }
发布评论

评论列表(0)

  1. 暂无评论