如何创建角度的表单,将超链接合并到字符串?

时间:2016-06-21 02:00:17

标签: javascript angularjs url hyperlink

我正在学习角度,我正在尝试创建一个可以点击的网站列表,就像你在书签应用中看到的那样,从一个todo示例。

https://github.com/LightYear9/ToDoList

我在index.html中添加了一个新变量newURL

input id="new-todo" placeholder="http://example.com" ng-model="newURL" ng-disabled="saving" autofocus

我可以看到它会直接进入js / controllers / todoctrl.js,但我不知道如何将同一形式的两个字符串都用到

$scope.addTodo = function () {

我可以像href='#'一样点击它。

非常感谢任何帮助

1 个答案:

答案 0 :(得分:0)

要获取用户输入的内容,您可以通过$ scope

访问newURL变量
//Array to hold urls 
$scope.booksList = [];

$scope.addTodo = function (url) {

//assign newURL to url in scope of this function..
url = $scope.newURL;

//Add url to books list
$scope.booksList.push(url)

}

您需要创建某种<button>并添加ng-click =&#34; addTodo()&#34;它...

希望这有帮助