搜尋

首頁  >  問答  >  主體

angular.js - angularjs 時間控制點擊後更改url

我在想 點擊時間控制後,該時間參數能夠帶到url 0 0。 。 。有什麼方法?求教。 。找了好久了

怪我咯怪我咯2796 天前609

全部回覆(1)我來回復

  • 给我你的怀抱

    给我你的怀抱2017-05-15 16:58:20

    將時間控制中的參數手動加入到url中不就可以了。 。 。


    你看一看看範例

    <body ng-app="MyApp">
    <h1>Time Show</h1>
    <p ng-controller="MyController as vm">
        <input type="time" ng-model="vm.time"/> <button ng-click="vm.change()">添加参数到url</button>
    </p>
    <script>
        angular.module('MyApp',[])
                .controller('MyController', MyController);
        MyController.$inject = ['$http','$location'];
    
        function MyController($http, $location){
            var vm = this;
            vm.change = change;
            vm.params = {
                time: '3600' // 这里你可能要对你获取到的时间做一下处理,我就简单写一下.
            };
    
            function change(){
                console.log(vm.time);
                var url = 'https://api.github.com/users';
                $http.get(url, {params: vm.params})
                        .then(function(res){
                            console.log(res);
                        })
            }
        }
    </script>
    </body>

    不知道你的想法是不是這樣,當你獲取到時間後,要與後端進行交互,而其中的時間是查詢參數。

    回覆
    0
  • 取消回覆