当他们在Angular之外更改时,处理ng-click上的输入值

时间:2015-01-05 02:49:32

标签: javascript angularjs angularjs-scope

如果在角度以外更改时,如何在ng-click上传递输入值。当我自己键入文本时,一切都很好但是一旦输入得到动态值,ng-click就会传递空表格。这里是我将使用的HTML:

<form id="form" action="" style="margin:0;">
    <img src="jCrop/images/imagename.jpg" id="imgcrop"/>
    <input type="text" name="hdnx" id="hdnx" data-ng-model="thumbnail.hdnx" ng-change="alert('test')" />
    <input type="text" name="hdny" id="hdny" data-ng-model="thumbnail.hdny" />
    <input type="text" name="hdnw" id="hdnw" data-ng-model="thumbnail.hdnw" />
    <input type="text" name="hdnh" id="hdnh" data-ng-model="thumbnail.hdnh" />
    <button ng-click="save()">Crop Image & Save Selection</button>
</form>

以下是AngularJS代码:

angular.module('blogAdmin').controller('ThumbnailsController', ["$rootScope", "$scope", "$location", "$http", "$filter", "dataService", function ($rootScope, $scope, $location, $http, $filter, dataService) {
  $scope.thumbnail = {};
  $scope.save = function () {
    if ($scope.thumbnail) {
        console.log($scope.thumbnail);  //empty log when values changes outside of angular
    }
  }
}]);

通过谷歌搜索我注意到$ scope。$ apply();将帮助我,如果是这样,如何在上面的形式使用它。

更新1

值是通过直接在HTML页面上的jQuery代码进行的更改: -

<script type="text/javascript">
    $(function () {
        $('#imgcrop').Jcrop({
            onSelect: getcroparea,
            aspectRatio: 1  //square selection to crop
        });
    })
    function getcroparea(c) {
        $('#hdnx').val(c.x);
        $('#hdny').val(c.y);
        $('#hdnw').val(c.w);
        $('#hdnh').val(c.h);
        console.log(c.h + " : " + c.w);
        $('#selectedSize').html("Selected region " + c.h + "px : " + c.w + "px");
    };
</script>

更新1

“使用时未定义$ scope”

    function getcroparea(c) {
        $('#hdnx').val(c.x);
        $('#hdny').val(c.y);
        $('#hdnw').val(c.w);
        $('#hdnh').val(c.h);
        console.log(c.h + " : " + c.w);
        $('#selectedSize').html("Selected region " + c.h + "px : " + c.w + "px");

        $scope.$apply();
    };

2 个答案:

答案 0 :(得分:0)

您应该将表单和可裁剪区域包装在指令中。 在这里,您可以访问应用第三方库的DOM元素,而不是更改输入文本值,直接在范围变量上更改它。

答案 1 :(得分:0)

可能有一个简单的解决方案,但我用这个解决了这个问题:

<script type="text/javascript">
$(function () {
    $('#imgcrop').Jcrop({
        onSelect: getcroparea,
        aspectRatio: 1  //square selection to crop
    });
})
function getcroparea(c) {
    $('#hdnx').val(c.x);
    $('#hdny').val(c.y);
    $('#hdnw').val(c.w);
    $('#hdnh').val(c.h);
    console.log(c.h + " : " + c.w);
    $('#selectedSize').html("Selected region " + c.h + "px : " + c.w + "px");

    $scope.thumbnail = { "id": $scope.id, "hdnx": c.x, "hdny": c.y, "hdnw": c.w, "hdnh": c.h, "imgcrop": $scope.firstImageSrc };

};
</script>

$ scope.thumbnail = ..是上面代码中的新内容,它每次都会分配范围变量。