gpt4 book ai didi

javascript - 计算 2 个 ember.js 属性的总和

转载 作者:行者123 更新时间:2023-12-02 16:26:18 25 4
gpt4 key购买 nike

我有一个函数,它有 2 个参数,它们是 Ember 对象的属性,如下所示:

mathOp: function(){

if (this.get('operator') == '+'){
var result = this.get('opr1') + this.get('opr2');
alert(result);
}

}

我输入 opr1 = 12 和 opr=23(例如)。加法是将它们作为字符串相加,即 result = 1223。如何让它们正常相加,即使 result = 35?请帮忙。

最佳答案

您可以使用函数parseInt将字符串转换为数字。

mathOp: function(){

if (this.get('operator') == '+'){
var result = parseInt(this.get('opr1'), 10) + parseInt(this.get('opr2'), 10);
alert(result);
}

}

关于javascript - 计算 2 个 ember.js 属性的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28653997/

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