gpt4 book ai didi

javascript - URL 链接在 Angularjs 中无法正确重定向

转载 作者:行者123 更新时间:2023-11-30 11:28:02 25 4
gpt4 key购买 nike

我的announce.obj 中有一个链接。但是当我点击它时,它在浏览器中给了我错误的 url ( http://www./ )。

html

<p>
<a ng-href="{{data.links}}" target="_blank">{{data.links}}</a>
</p>

data.links 值

www.google.com

在数据库中保存我的链接时,我应该添加一个 https 吗?

最佳答案

$scope.myVar = 'https://www.w3schools.com'; 这样试试:

var app = angular.module('myAngularApp', []);

var myController = app.controller('myController', MyController);

myController.$inject = ['$scope'];

function MyController($scope){

$scope.myVar = 'https://www.w3schools.com';

}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>

<html>

<body ng-app="myAngularApp">

<div ng-controller = "myController">
<h1>Tutorials</h1>
<p>Go to <a ng-href="{{myVar}}">{{myVar}}</a> to learn!</p>
</div>

<p>This example could use the original href attribute, but in AngularJS, the ng-href attribute is safer.</p>

</body>
</html>

关于javascript - URL 链接在 Angularjs 中无法正确重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47279337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com