web-dev-qa-db-ja.com

別の例外がスローされました:FormatException:無効な基数-10番号

TextFormFeildから整数を取得しようとすると、このエラーが発生します。このウィジェットを何度も使用しましたが、このエラーは発生しませんでした。誰かがそれが正確に何を意味するのか知っていますか?

それは大きな助けになるでしょう。以下は、エラーが発生する可能性があると思われる(1084行の)コード全体のほんの一部です:(また、controller:'bowlerIndexController = new TextEditingController(text: "");':/を初期化しました)...

 void changeBowler(BuildContext context) {
showDialog(
    context: context,
    builder: (context) {
      return new SimpleDialog(
        title: new Text("Who is bowling next?",
            style:
                new TextStyle(fontSize: 18.0, fontWeight: FontWeight.bold)),
        children: <Widget>[
          new Column(
            children: List<Widget>.generate(teamBowling.length, (index) {
              return Padding(
                padding: const EdgeInsets.all(8.0),
                child: new Row(
                  children: <Widget>[
                    new Padding(
                      padding: new EdgeInsets.all(2.0),
                      child: new Text(
                        (index + 1).toString(),
                        style: new TextStyle(fontSize: 15.0),
                      ),
                    ),
                    new Text(teamBowling[index].player["Name"],
                        style: new TextStyle(
                            fontSize: 18.0, fontWeight: FontWeight.bold))
                  ],
                ),
              );
            }),
          ),
          new TextFormField(
            keyboardType: new TextInputType.numberWithOptions(
                signed: false, decimal: false),
            decoration: new InputDecoration(
                hintText: "Enter the bowler's corresponding number"),
            controller: bowlerIndexController,
          ),
          new RaisedButton(
              child: new Text(
                "DONE",
                style: new TextStyle(color: Colors.black),
              ),
              onPressed: () {
                int a =
                    int.parse(bowlerIndexController.text.toString()) - 2;
                if (a >= 0 && a < teamBowling.length) {
                  bowlerIndex = int.parse(bowlerIndexController.toString());
                  Navigator.pop(context);
                }
              })
        ],
      );
    });
  }
4
yash javeri

間違いはばかげていました:/。私はコントローラーをテキストに変換しませんでした。私はコントローラー==>文字列から直接行いました。他の誰かが同様のクエリを持っている場合に備えて、私はこの質問を保持しています:P。

6
yash javeri