AngularJS单击以编辑下拉列表等字段

时间:2013-10-25 16:35:21

标签: javascript html angularjs

我偶然发现了article关于如何为表单构建点击编辑功能的问题。作者说:

  

如果你想输入type =“date”甚至是select?这个   在那里你可以为指令添加一些额外的属性名称   范围,如fieldType,然后更改模板中的一些元素   基于该值。或者对于完全自定义,您甚至可以转向   off replace:true并添加一个包装必要的编译函数   单击以编辑页面中任何现有内容的标记。

在查看代码的过程中,我似乎无法理解如何操作模板,使其能够应用于任何角度组件,更不用说如何将其应用于下拉列表。来自以下文章的代码:

    app.directive("clickToEdit", function() {
    var editorTemplate = '<div class="click-to-edit">' +
        '<div ng-hide="view.editorEnabled">' +
            '{{value}} ' +
            '<a ng-click="enableEditor()">Edit</a>' +
        '</div>' +
        '<div ng-show="view.editorEnabled">' +
            '<input ng-model="view.editableValue">' +
            '<a href="#" ng-click="save()">Save</a>' +
            ' or ' +
            '<a ng-click="disableEditor()">cancel</a>.' +
        '</div>' +
    '</div>';

    return {
        restrict: "A",
        replace: true,
        template: editorTemplate,
        scope: {
            value: "=clickToEdit",
        },
        controller: function($scope) {
            $scope.view = {
                editableValue: $scope.value,
                editorEnabled: false
            };

            $scope.enableEditor = function() {
                $scope.view.editorEnabled = true;
                $scope.view.editableValue = $scope.value;
            };

            $scope.disableEditor = function() {
                $scope.view.editorEnabled = false;
            };

            $scope.save = function() {
                $scope.value = $scope.view.editableValue;
                $scope.disableEditor();
            };
        }
    };
});

我的问题是,我们如何扩展上述代码以允许下拉编辑?这可以更改为选中的值。

1 个答案:

答案 0 :(得分:7)

您可能会考虑使用template: function(tElement,tAttrs )

这将允许您根据属性返回适当的模板。

app.directive("clickToEdit", function() {
      return {
       /* pseudo example*/
        template: function(tElement,tAttrs ){
             switch( tAttrs.type){
                 case 'text':
                    return '<input type="text"/>';
                 break;
             }
        },....

$compile docs

中概述了这一点