我想在一个函数中构建URL,然后在html页面上单击它。
我想如何构建网址:
scope.sendChooosenDeviceToController = function (choosenDevice) {
scope.choosenDevice = choosenDevice;
createRouteUrl(choosenDevice);
function createRouteUrl(choosenDevice){
var longitude = choosenDevice.coords.longitude;
var latitude = choosenDevice.coords.latitude;
var routeUrl = 'https://maps.google.com?saddr=Current+Location&daddr=' + latitude +',' + longitude;
console.log('TEEN::',routeUrl);
return routeUrl
};
}
和html:
<a ng-href="{{deviceUrl.value}}" target="_blank">
<button class="btn-blue">Route to</button>
</a>
解决方案不起作用,如何实现呢?
谢谢!