给我你的怀抱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>
不知道你的想法是不是這樣,當你獲取到時間後,要與後端進行交互,而其中的時間是查詢參數。