在功能中创建URL

时间:2016-07-22 08:29:23

标签: angularjs angularjs-directive

我想在一个函数中构建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>

解决方案不起作用,如何实现呢?

谢谢!

0 个答案:

没有答案