- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试按 id 单一输出产品库。但是我得到一个错误 Map is not a subtype of type iterable。我还是新手,我有点卡在这里。
这是我的 API,我认为错误来自这里。提前谢谢你的帮助。
Future<List<Product>> fetchProduct(String productID) async{
String productPost = ApiUtil.productPost(productID);
Map<String, String> headers = {
'Accept' : 'application/json'
};
var response = await http.get(productPost, headers: headers);
List<Product> productpost = [];
if( response.statusCode == 200 ) {
Map<String, dynamic> body = json.decode(response.body);
for ( var item in body['data'] ){
Product product = Product.fromJson(item);
productpost.add(product);
}
}
return productpost;
class Product {
String id, name, description;
Product(this.id, this.name, this.description);
Product.fromJson( Map<String,dynamic> jsonObject ){
this.id = jsonObject['id'].toString();
this.name = jsonObject['name'];
this.subname = jsonObject['description'];
}
}
class ProductDetails extends StatefulWidget{
final String productID;
ProductDetails(this.productID);
@override
ProductDetailsState createState() => new ProductDetailsState();
class ProductDetailsState extends State<ProductDetails> {
ProductApi productapi = ProductApi();
@override
void initState() {
super.initState();
}
.... return Scaffold ...
Container(
child: FutureBuilder(
future: productapi.fetchProduct(widget.productID),
builder: (BuildContext context, AsyncSnapshot snapshot) {
if( snapshot.hasError ) {
return Text ('NO DATA');
}
if( snapshot.hasData) {
return _productDetail( snapshot.data );
}
return null;
},
)
)
_productDetail( List<Product> product ){
return PageView.builder(
itemCount: product.length,
itemBuilder: ( BuildContext context, int index ){
return new Padding(
padding: EdgeInsets.all(10.0),
child: Column(
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Text(product[index].name, textAlign: TextAlign.center, style:
TextStyle(fontSize: 28, color: Colors.black, fontWeight: FontWeight.w700)),
]
)
);
}
);
}
[VERBOSE-2:ui_dart_state.cc(148)] Unhandled Exception: NoSuchMethodError: The getter 'iterator' was called on null.
Receiver: null
Tried calling: iterator
#0 Object.noSuchMethod (dart:core-patch/object_patch.dart:51:5)
#1 ProductApi.fetchProduct (package:tampr/api/product_api.dart:61:29)
<asynchronous suspension>
#2 ProductDetailsState.initState (package:tampr/pages/product_details.dart:26:16)
#3 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4068:58)
#4 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
#5 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
#6 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
#7 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
#8 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
#9 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
#10 <…>
{"data":[{
"id": 1,
"name": "Product Name",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"productimage": "product_img.jpg",
"logo": "logo_img.png",
"user_id": 1,
"created_at": "2019-11-18 05:25:49",
"updated_at": "2019-11-18 05:25:49",
"options": [
{
"id": 1,
"name": "option name",
"image": "optionimage.jpg",
"pivot": {
"product_id": 1,
"option_id": 1
}
},
]
}]}
最佳答案
我也遇到了同样的问题,就我而言,这是因为:
Product product = Product.fromJson(item);[item] structure coming from Firestore doesn't match [fromJson] decoding structureor maybe one of them is null or typo error in the field naming.
关于android - flutter 错误 : The getter 'iterator' was called on null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58954923/
如果您有一个具有一些普通 get/set 属性的类,是否有任何理由在类方法中使用 getter,或者您应该只使用私有(private)成员变量?我认为关于setter(验证逻辑?)可能会有更多争论,但
我是 Android 编程的新手(~ 2 个月)有必要为几十个不同的变量设置 getter 吗? 例如—— //Yes I realise that this isn't 'dozens' publi
我是VUEX新手,在学习VUEX的同时搭建了一个测试应用。我已将我的 VUEX 存储拆分为多个模块,每个模块都有自己的 getter.js 文件。 Getters、 Action 、突变被导入到每个模
我有一项服务正在加载我想在多个组件之间共享的基本系统信息。 如果我在 getter 中创建一个 getter 方法 this 如果我不在服务中使用双箭头,则 getter 中的 this 成为组件的
tl;博士 如何从参数化的 getter 访问其他 getter? 通常可以使用this.myGetter ;但是参数化的 getter 被实现为箭头函数,其中 this未定义。 在 Pinia 中处
我第一次尝试做一些 OOP,这不是简单的练习,而是用 java 编写一个程序来存储有关人员的信息(如通讯录)。下面是我正在开发的名为 Person 的类的片段。 Person 将在将来的某个时间被其他
我在某处看到类似下面的内容,想知道它是什么意思。我知道他们是getter和setter,但是想知道为什么字符串Type是这样定义的。谢谢你帮助我。 public string Type { get;
Public class Example { private int number; public Example(int number){ this.number =
getter 应该只返回对象吗: public MyObject getMyObject() { return myObject; } 或者它应该复制它返回的对象并返回该副本? public
我目前正在处理大量数据输入,包括很多值,我希望在 getter 中接收这些值以供以后使用。 在编写了一些方法之后,我想知道仅使用一个 get 方法是否是一个更好的主意,并使用一个包含所有可能值的枚举类
我正在使用新的 Class Public Field Declarations可用 Chrome 72我遇到了这种真正奇怪的行为: class Extended { property = 5; }
我有一个这样的表达式 setter/getter : var expression = () => SomeInstance.Nr; 它被传递到一个方法中: public void AddExpres
我的一个类(class)中有以下 getter: get password(){ if(this._public) return null; var text = ""
我已经设法测试了与其他代码隔离的 Vuex getter。当 getter 依赖于其他 getter 时,我现在面临一些问题,请参见以下示例: getters.js export const gett
有时我的任务是查找 getter 返回的值中的某些嵌套 getter 是否具有某些属性。经典的 C++ 会是这样的: for (const auto& label: labels) for (co
我有一个像这样的基类“Parent”: using System; using System.Collections.Generic; using System.Text; namespace Con
我一直在努力了解 getter 和 setter,但没有深入了解。我读过 JavaScript Getters and Setters和 Defining Getters and Setters只是没
考虑一个简单的 Vue 博客: 我使用 Vuex 作为我的数据存储,我需要设置两个 getters :一个 getPost getter,用于通过 ID 检索 post,以及一个 listFeatur
我有一个 VueX 商店,有两个模块,user.js 和merchant.js,顶层是index.js。 user.js 中的 getter 是: 重构 const getters = { s
我正在尝试向 jsp 添加一个复选框以在进入站点之前接受条款和条件。尽管我有一个 getter 方法并且没有看到任何拼写错误,但我一直收到关于没有 getter 方法的相同错误。我不明白我错过了什么。
我是一名优秀的程序员,十分优秀!