Вопрос

I'm trying to parse a model from a form which contain a select(ngOptions) and save it to db but the selected value is never parsed. i'm stuck here can someone help please.

here is my code:

View

<section class="container" data-ng-controller="TagsController" >
    <h2><i class="fa fa-pencil-square-o"></i>Add a new Tag</h2>

    <form class="form-horizontal col-md-5" data-ng-submit="create()">
        <div class="form-group ">
            <div class="controls">
                <input type="text" class="form-control input-lg" data-ng-model="label" id="label" placeholder="Label" required>
            </div>
        </div>
        <div class="form-group" data-ng-controller="CategoriesController" data-ng-init="find()">
            <select class="form-control input-lg" ng-model="category._id" ng-options="category._id as category.label for category in categories">
              <option value="">Choose a Category</option>
            </select>
        </div>

        <div class="control-group">
            <div class="controls">
                <input type="submit" class="btn">
            </div>
        </div>

    </form>
</section>

controller

angular.module('mean.tags').controller('TagsController', ['$scope', '$routeParams', '$location', 'Global', 'Tags', function ($scope, $routeParams, $location, Global, Tags) {
    $scope.global = Global;

    $scope.create = function() {
        var tag = new Tags({
            label: this.label,
            category: this.category
        });
        tag.$save(function(response) {
            $location.path("tags/");
        });
        this.label = "";
        this.category = "";
    };
...
Это было полезно?

Решение

I found the problem so i will answer my question. The problem was due to architecture restrictions, Angularjs don't allow to nest a ng-controller inside an other one...

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top