0

所以我有这个代码:

import 'dart:html';
import 'dart:json';

class BaseModel {
  Map values;
  String _url;
  // another basic properties

  // constructor defined here

  fetch() {
    var el = document.query('#container');
    HttpRequest.getString(_url).then(
      (result) {
        values = new Map.from(parse(result));
        el.innerHtml = values['name'];
        return result;
      })
  }
}

void main() {
  BaseModel bm = new BaseModel(url: /path/to/test.json);
  bm.fetch();
}

我有一个这样的json数据:

{
  "name" : "Andrew",
  "age" : 20
}

我希望在 DOM 上看到“Andrew”,但我什么也没看到。如果我改变

el.innerHtml = "SOME_TEXT"

然后我可以看到显示的“SOME_TEXT”文本。

你们能帮帮我吗?

4

1 回答 1

1
  • 如果打印名称,您会在 JavaScript 控制台中看到什么?
  • 如果添加错误处理程序会发生什么?

大致如下:

    HttpRequest.getString(_url)
      .then((result) {
        values = new Map.from(parse(result));
        print(values['name']);
        el.innerHtml = values['name'];
        return result;
      })
      .catchError((e) => print(e));
于 2013-03-24T12:32:46.140 回答