我需要一个只能接受数字的输入框,在ember-cli中是否存在一个组件?我用{{input type =“number”}}
徒劳无功答案 0 :(得分:0)
查看Ember验证插件https://github.com/dockyard/ember-validations,然后更具体地https://github.com/dockyard/ember-validations#numericality
基本上你会添加这样的验证:
private void showKeyboard() {
InputMethodManager imm = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(mEditText, InputMethodManager.SHOW_IMPLICIT);
}
输入框的值。