我在想 點擊時間控制後,該時間參數能夠帶到url 0 0。 。 。有什麼方法?求教。 。找了好久了
走同样的路,发现不同的人生
將時間控制中的參數手動加入到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>
不知道你的想法是不是這樣,當你獲取到時間後,要與後端進行交互,而其中的時間是查詢參數。
將時間控制中的參數手動加入到url中不就可以了。 。 。
你看一看看範例
不知道你的想法是不是這樣,當你獲取到時間後,要與後端進行交互,而其中的時間是查詢參數。