在Angular中动态设置ngModelOptions

时间:2016-03-04 22:01:57

标签: angularjs

我有以下代码段:

<input type="date" ng-model="arrival" ng-model-options="{timezone: 'PST'}" />
<input type="time" ng-model="arrival" ng-model-options="{timezone: 'PST'}" />
{{arrival}}

正常工作(日期显示为从PST转换的UTC时间)。我现在正试图让'PST'选项动态化:

<select ng-model="timezone>
  <option value="PST">PST</option>
  <option value="EST">EST</option>
</select>
<input type="date" ng-model="arrival" ng-model-options="{timezone: timezone}" />
<input type="time" ng-model="arrival" ng-model-options="{timezone: timezone}" />
{{arrival}}

但是,更改时区永远不会更新到达时间(看起来绑定不适用于nd-model-options)。任何方式我可以在时区更改时强制字段刷新?

修改

小提琴:https://jsfiddle.net/10nfqow9/

1 个答案:

答案 0 :(得分:2)

创建另一个具有高优先级(高于ng-model / ng-model-option&#)的指令(属性类型),该指令监视选项对象的更改并触发重新编译。我为缺乏细节而道歉,我在电话上:)

编辑: 看起来有一个名为kcd-recompile的指令完全符合我的描述。这是一个有效的plnkr,还有一些额外的好处可以用来为美国时区的DST进行分解。

HTML:

<div kcd-recompile="data.timezone">
  <div>
    <select ng-model="data.timezone" ng-options="x.offset as x.name for x in timezones">
    </select>
  </div>
  <div>
    <input type="date" ng-model="data.arrival" ng-model-options="{timezone: data.timezone}" />
  </div>
  <div>
    <input type="time" ng-model="data.arrival" ng-model-options="{timezone: data.timezone}" />  
  </div>
</div>

和JS:

Date.prototype.stdTimezoneOffset = function() {
    var jan = new Date(this.getFullYear(), 0, 1);
    var jul = new Date(this.getFullYear(), 6, 1);
    return Math.max(jan.getTimezoneOffset(), jul.getTimezoneOffset());
}

Date.prototype.dst = function() {
    return this.getTimezoneOffset() < this.stdTimezoneOffset();
}

angular.module('DemoApp', ['kcd.directives']);
angular.module('DemoApp')
.controller('DemoCtrl', ['$scope', function($scope) {
    var now = new Date(),
        isDst = now.dst();

    $scope.data ={
      arrival: now,
      timezone: null
    };
    $scope.timezones = [
      {
        name: 'PST', 
        offset: isDst ? '-0700' : '-0800'
      },
      {
        name: 'EST', 
        offset: isDst ? '-0400' : '-0500'
      }
    ];
  }]
);