本文介绍了我如何解析字符串在角前pression来诠释?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
一个串号5
var num_str = '5';
我怎样才能parseInt函数和下面就让在同一时间的答案是否正确?
How can I parseInt and let below answers correct at the same time?
{{num_str + 1}} // 6
{{num_str - 1}} // 4
parseInt函数不能在角前pression使用,
parseInt can't be used in an Angular expression,
{{parseInt(num_str) - 1}}
号码过滤不能做加号和减号,
number filter can't do add and minus,
{{num_str - 1 | number}}
如果任何人有有用的建议,我会的,你很AP preciate
If anyone have useful suggestion, I will very appreciate of you
推荐答案
在你的控制器:
$scope.num_str = parseInt(num_str, 10); // parseInt with radix
这篇关于我如何解析字符串在角前pression来诠释?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!