我正在使用 AngularFire 来获取输入并将它们保存到我的 Firebase 数据库中。目前,我有一个输入服务价格的输入,就像这样(我使用“文本”而不是“数字”的输入类型,因为我不希望它在旧浏览器中引起问题):
<p><input type="text" placeholder="Enter your monthly price here" ng-model="priceMonthly" required/></p>
但是,当我在提交表单时(使用更新函数)将其写入 Firebase 时,它会将值写入$scope.priceMonthly
字符串而不是整数。将此值写为整数而不是字符串的最佳方法是什么?