1

我有一个添加按钮,它使用指令添加到表的(.estimates)tbody:

function EstimateCtrl( $scope, $compile ) {

    $scope.services = [
            { 'value': 'c', 'name': 'Standard Courier' },
            { 'value': 'xc', 'name': 'Express Courier' },
            { 'value': 'cc', 'name': 'Country Courier' }
    ]

    $scope.add = function() {

        angular.element('.estimates tbody').append( $compile('<tr estimate></tr>')($scope) );

    }

}

angular.module('dashboard', [])
    .directive('estimate', function() {

        return {

            restrict: 'A',
            template: '<td><input type="text" placeholder="Suburb"/></td><td><select ng-model="estimate.service" ng-options="service.value as service.name for service in services" class="form-control"></select></td><td>$0.00</td><td><button type="button" class="remove">x</button></td>',
            link: function( scope, element, attrs ) {

                element.find('.remove').bind('click', function() {

                    element.closest('tr').remove();

                });

            }

        }

    });

如何在 angularjs 中使用 ng-model 来创建元素数组?例如:

<select name="foo[]"></select>

<select ng-model="foo[]"></select>

我已经挖了一天半,但我似乎无法休息。我希望也许有人能指出我正确的方向。非常感谢您的帮助。


编辑:这是 plunker 的链接,我相信在看到这个之后每个人都会知道我在说什么: http://plnkr.co/edit/JlYB9P0vyAqghOmeNYh4


Edit2:让我们看看我是否可以再举一个例子来向你展示我所追求的

<form method="POST" action="">

<!-- I was attempting to do ng-model="estimate.service[]" but of course this doesn't work -->
<select name="estimate[service][]">
    <option value="foor">Foo</option>
    <option value="bar">Bar</option>
</select>
<select name="estimate[service][]">
    <option value="foor">Foo</option>
    <option value="bar">Bar</option>
</select>
<select name="estimate[service][]">
    <option value="foor">Foo</option>
    <option value="bar">Bar</option>
</select>

<input type="submit" value="Submit"/>

</form>

<?php

if ( $_POST )
{

    print_r( $_POST['estimate']['service'] );

}

?>

输出

在此处输入图像描述

4

2 回答 2

6

天哪!我设法找到了解决办法。

我放弃了指令并以另一种方式做到了,这是我的工作代码:

HTML:

<div ng-controller="Ctrl">
    <table>
        <tbody ng-repeat="service in estimate.services">
            <tr>
                <td><input type="text" placeholder="Suburb"/></td>
                <td>
                    <select ng-model="estimate.services[service.name]" ng-options="option.value as option.name for option in options" class="form-control"></select>
                </td>
                <td>$0.00</td>
                <td><button type="button" class="remove">x</button></td>
            </tr>
        </tbody>
    </table>
</div>

JavaScript:

function Ctrl( $scope, $compile ) {

    $scope.estimate.services = [
        { name: 'service1', value: '' }
    ];

    $scope.options = [
        { name: 'Option 1', value: 'opt1' },
        { name: 'Option 2', value: 'opt2' },
        { name: 'Option 3', value: 'opt3' }
    ];

    $scope.add = function() {

        $scope.estimate.services.push({
            name: 'service' + ($scope.estimate.services.length + 1),
            value: ''
        });

    };

}
于 2013-09-17T03:06:46.937 回答
0

编辑:

好的,假设您有两个可配置选项数组:

options1=[...]
options2=[...]

现在,如果我理解正确,您想要一个选择框,使您可以选择其中的一组,对吗?因此,首先您需要将它们都包含在另一个数组中或如前所述的另一个对象中。

所以让我们使用一个对象(我也可以提供一个数组示例)

var $scope.myOptions ={'LabelForOptions1' : options1, 'LabelForOptions2' : options2}

接下来我们需要一个地方来存储选择的选项

 $scope.selectedOptions = {};

最后是选择框本身

<select ng-model="selectedOptions" ng-options="value as key for (key,value) in myOptions"></select>

请注意,options1 和 options2 变量也可以是单个值,并且该示例仍然有效

问题的完整解决方案:我假设这是您的模型:

function MyController($scope) {
    $scope.options1 = ['Foo1','Bar1'];
    $scope.options2 = ['Foo2','Bar2'];
    $scope.options3 = ['Foo3','Bar3'];
    $scope.allOptions = [$scope.options1, $scope.options2, $scope.options3];
    $scope.selectedOptions = ["none","none","none"];
};

所以这将是解决方案:

<!DOCTYPE html>
<html ng-app>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.js"></script>
    <script src="./js/myAngular.js"></script>
</head>
<body ng-controller="MyController">
<div><select ng-repeat="option_set in allOptions"ng-model="selectedOptions[$index]" ng-options="value for value in option_set">
</select></div>
</body>
</html>

工作示例:http: //jsfiddle.net/qGRQF/11/

于 2013-09-15T09:14:36.660 回答