这个是否有任何惯用的JavaScript解决方案:
var addTuple = function(map,tuple) { map[tuple[0]] = tuple[1]; return map}
我需要它以更多功能样式重写this example (see finance3.js):
angular.module('finance3', [])
.factory('currencyConverter', ['$http', function($http) {
var rates = {}; //should be future (or some other monad) mapped from $http.sucess, but it's hard to do with Js
var processRate = function(rate) {
return [rate.id.substring(3,6), window.parseFloat(rate.Rate)];
};
var addTuple = function(map,tuple) { map[tuple[0]] = tuple[1]; return map};
$http.jsonp(url).success(function(data) {
rates = data.query.results.rate.map(processRate).reduce(addTuple, {});
});
return rates
}]);
所以,.reduce(addTuple, {})
就像toMap
一样。
P.S。顺便说一句,KnockoutJs提供了至少更多反应性(但仍然是非纯函数式)的方式来更新模型。
答案 0 :(得分:2)
如果您可以使用外部库,lodash有_.pairs
和_.zipObject
将对象转换为二维数组的数组(即{key: value}
到{{ 1}})和反之亦然。
[[key: value]]
您可以将您的示例重写为
var x = _.pairs({ 'barney': 36, 'fred': 40 });
// [['barney', 36], ['fred', 40]]
var y = _.zipObject(x)
// { 'fred': 30, 'barney': 40 }