angularjs从递归模板中的输入中获取值

时间:2015-01-15 12:51:26

标签: angularjs angularjs-scope angularjs-ng-repeat

如何从嵌套视图中获取控制器的值?我想提一下,我有一个递归的方法。

HTML

<textarea ng-model="inputValue" class="ng-valid ng-dirty ng-valid-parse ng-touched"></textarea>

Full HTML structure can be found here

修改 我想在控制器中获取textarea的值。 (例如$ scope.inputValue);目前未定义

1 个答案:

答案 0 :(得分:0)

看到这个jszfiddle http://jsfiddle.net/7qbucc62/

 <div ng-app="app">
    <div ng-controller="firstController">
        <textarea ng-model="inputValue"></textarea>
        <textarea ng-model="inputValue"></textarea>
    </div>
</div>
<script>
    (function abc()
    {
        var app=angular.module("app",[]);
        app.controller("firstController",function($scope)
        {
            $scope.inputValue="";

        });
    })();
</script>

我认为这就是你要问的问题

您可以直接在控制器中使用$ scope.inputValue。它将为您提供textarea

的价值