gpt4 book ai didi

javascript - 如何在名为 parseFloat 的 Angular 工厂函数内访问 parseFloat?

转载 作者:行者123 更新时间:2023-11-28 15:33:26 27 4
gpt4 key购买 nike

如何在名为 parseFloat 的 Angular 工厂函数内访问 parseFloat?

angular
.module('myApp')
.factory('mathService', [MathService]);

function MathService() {
return {
parseFloat: parseFloat
};

function parseFloat(num) {
// this should be the global parseFloat
// and not the this math service parseFloat
return parseFloat(num, 10); // how do I fix this line?
}
}

目前这会导致无限递归。如何在名为 parseFloat 的工厂方法中访问全局 parseFloat?

最佳答案

window.parseFloat(num, 10) 应该可以工作。

关于javascript - 如何在名为 parseFloat 的 Angular 工厂函数内访问 parseFloat?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26284905/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com