Dart Map and Parsing JSON - android-studio
As a new Dart Fan, I would like to understand the concept of Map/List.
I tried to do HTTP requests, getting JSON data. And it's ok till I have to assign to the Map.
Let me show you the example of JSON data:
{
"error":"",
"error_number":"",
"response_code":200,
"result":[
{
"id":1,
"name":"Great Deal",
"day_aired":"2015-07-05 11:06:09",
"trend":"Noone",
"trend_details": [{
"name":"Great Deal",
}
]
},
{
"id":2,
....
}
]
}
The code:
import 'dart:async';
import 'dart:convert';
import 'package:http/http.dart' as http;
Future<ApiResponse> fetchData(String command, Map params) async {
final String url =
'https://example.com/api/v2/....';
final response = await http.get(url);
if (response.statusCode == 200) {
return ApiResponse.fromJson(json.decode(response.body));
} else {
// If that call was not successful, throw an error.
throw Exception('Failed to load post');
}
}
}
final response = await http.get(url);
dynamic data = json.decode(response.body);
List<String> parsed = data['result'] as List<String>;
// List<String> parsedList = new List<String>.from(parsed);
if (response.statusCode == 200) {
//return json.decode(response.body);
List<ApiResponse> list = List<ApiResponse>.from(
parsed.map((i) => ApiResponse.fromJson(i as Map<String, dynamic>)));
}
I do the same as this article. But I read this article too. I'm trying to create Future<ApiResponse> with data from json.decode(response.body) (result entry inside of it).
factory ApiResponse.fromJson(Map<String, dynamic> json) {...}
But as I understand, result is not Map<String, dynamic> but when I try to invoke the code below it says:
Unhandled Exception: type 'List<dynamic>' is not a subtype of type 'List<String>' in type cast and it referred to List<String> parsed = data['result'] as List<String>;.
I'm confused and I know the code is a mess. I read in the second article that I should do an additional cast to trend_details but it did not work as I expected. Obviously data['result'] is an array but how to cast it properly? What are the good practices?
result stores a list of Map<String, dynamic>
final parsed = data['result'] as List<Map<String, dynamic>>;
You can parse json string with the following structure and code
You can see picture display correct result name
code snippet
var payload = payloadFromJson(jsonStr);
print('${payload.result[0].name}');
related class
// To parse this JSON data, do
//
// final payload = payloadFromJson(jsonString);
import 'dart:convert';
Payload payloadFromJson(String str) => Payload.fromJson(json.decode(str));
String payloadToJson(Payload data) => json.encode(data.toJson());
class Payload {
String error;
String errorNumber;
int responseCode;
List<Result> result;
Payload({
this.error,
this.errorNumber,
this.responseCode,
this.result,
});
factory Payload.fromJson(Map<String, dynamic> json) => Payload(
error: json["error"] == null ? null : json["error"],
errorNumber: json["error_number"] == null ? null : json["error_number"],
responseCode: json["response_code"] == null ? null : json["response_code"],
result: json["result"] == null ? null : List<Result>.from(json["result"].map((x) => Result.fromJson(x))),
);
Map<String, dynamic> toJson() => {
"error": error == null ? null : error,
"error_number": errorNumber == null ? null : errorNumber,
"response_code": responseCode == null ? null : responseCode,
"result": result == null ? null : List<dynamic>.from(result.map((x) => x.toJson())),
};
}
class Result {
int id;
String name;
DateTime dayAired;
String trend;
List<TrendDetail> trendDetails;
Result({
this.id,
this.name,
this.dayAired,
this.trend,
this.trendDetails,
});
factory Result.fromJson(Map<String, dynamic> json) => Result(
id: json["id"] == null ? null : json["id"],
name: json["name"] == null ? null : json["name"],
dayAired: json["day_aired"] == null ? null : DateTime.parse(json["day_aired"]),
trend: json["trend"] == null ? null : json["trend"],
trendDetails: json["trend_details"] == null ? null : List<TrendDetail>.from(json["trend_details"].map((x) => TrendDetail.fromJson(x))),
);
Map<String, dynamic> toJson() => {
"id": id == null ? null : id,
"name": name == null ? null : name,
"day_aired": dayAired == null ? null : dayAired.toIso8601String(),
"trend": trend == null ? null : trend,
"trend_details": trendDetails == null ? null : List<dynamic>.from(trendDetails.map((x) => x.toJson())),
};
}
class TrendDetail {
String name;
TrendDetail({
this.name,
});
factory TrendDetail.fromJson(Map<String, dynamic> json) => TrendDetail(
name: json["name"] == null ? null : json["name"],
);
Map<String, dynamic> toJson() => {
"name": name == null ? null : name,
};
}
full code
import 'package:flutter/material.dart';
// To parse this JSON data, do
//
// final payload = payloadFromJson(jsonString);
import 'dart:convert';
Payload payloadFromJson(String str) => Payload.fromJson(json.decode(str));
String payloadToJson(Payload data) => json.encode(data.toJson());
class Payload {
String error;
String errorNumber;
int responseCode;
List<Result> result;
Payload({
this.error,
this.errorNumber,
this.responseCode,
this.result,
});
factory Payload.fromJson(Map<String, dynamic> json) => Payload(
error: json["error"] == null ? null : json["error"],
errorNumber: json["error_number"] == null ? null : json["error_number"],
responseCode: json["response_code"] == null ? null : json["response_code"],
result: json["result"] == null ? null : List<Result>.from(json["result"].map((x) => Result.fromJson(x))),
);
Map<String, dynamic> toJson() => {
"error": error == null ? null : error,
"error_number": errorNumber == null ? null : errorNumber,
"response_code": responseCode == null ? null : responseCode,
"result": result == null ? null : List<dynamic>.from(result.map((x) => x.toJson())),
};
}
class Result {
int id;
String name;
DateTime dayAired;
String trend;
List<TrendDetail> trendDetails;
Result({
this.id,
this.name,
this.dayAired,
this.trend,
this.trendDetails,
});
factory Result.fromJson(Map<String, dynamic> json) => Result(
id: json["id"] == null ? null : json["id"],
name: json["name"] == null ? null : json["name"],
dayAired: json["day_aired"] == null ? null : DateTime.parse(json["day_aired"]),
trend: json["trend"] == null ? null : json["trend"],
trendDetails: json["trend_details"] == null ? null : List<TrendDetail>.from(json["trend_details"].map((x) => TrendDetail.fromJson(x))),
);
Map<String, dynamic> toJson() => {
"id": id == null ? null : id,
"name": name == null ? null : name,
"day_aired": dayAired == null ? null : dayAired.toIso8601String(),
"trend": trend == null ? null : trend,
"trend_details": trendDetails == null ? null : List<dynamic>.from(trendDetails.map((x) => x.toJson())),
};
}
class TrendDetail {
String name;
TrendDetail({
this.name,
});
factory TrendDetail.fromJson(Map<String, dynamic> json) => TrendDetail(
name: json["name"] == null ? null : json["name"],
);
Map<String, dynamic> toJson() => {
"name": name == null ? null : name,
};
}
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
#override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
#override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
String jsonStr = '''
{
"error":"",
"error_number":"",
"response_code":200,
"result":[
{
"id":1,
"name":"Great Deal",
"day_aired":"2015-07-05 11:06:09",
"trend":"Noone",
"trend_details": [{
"name":"Great Deal"
}
]
}
]
}
''';
void _incrementCounter() {
var payload = payloadFromJson(jsonStr);
print('${payload.result[0].name}');
setState(() {
// This call to setState tells the Flutter framework that something has
// changed in this State, which causes it to rerun the build method below
// so that the display can reflect the updated values. If we changed
// _counter without calling setState(), then the build method would not be
// called again, and so nothing would appear to happen.
_counter++;
});
}
#override
Widget build(BuildContext context) {
// This method is rerun every time setState is called, for instance as done
// by the _incrementCounter method above.
//
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Column(
// Column is also a layout widget. It takes a list of children and
// arranges them vertically. By default, it sizes itself to fit its
// children horizontally, and tries to be as tall as its parent.
//
// Invoke "debug painting" (press "p" in the console, choose the
// "Toggle Debug Paint" action from the Flutter Inspector in Android
// Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
// to see the wireframe for each widget.
//
// Column has various properties to control how it sizes itself and
// how it positions its children. Here we use mainAxisAlignment to
// center the children vertically; the main axis here is the vertical
// axis because Columns are vertical (the cross axis would be
// horizontal).
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.display1,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}
Related
Flutter : GetX Variable initialise problem in Profile Data
I am using GetX statemangement on my flutter app. I want to fetch User's Profile data from server. That's Why I create a Profile Model Class and a Controller Screen. But I can't. Here is a problem to initialisation. json Response - { "riderId": 1, "riderName": "Ramiz Miah", "riderContact": "01787656565", "riderEmail": "ramiz#hotmail.com", "riderImgRef": "" } Profile Model class ProfileModel { int? riderId; String? riderName; String? riderContact; String? riderEmail; String? riderImgRef; ProfileModel( {this.riderId, this.riderName, this.riderContact, this.riderEmail, this.riderImgRef}); ProfileModel.fromJson(Map<String, dynamic> json) { riderId = json['riderId']; riderName = json['riderName']; riderContact = json['riderContact']; riderEmail = json['riderEmail']; riderImgRef = json['riderImgRef']; } Map<String, dynamic> toJson() { final Map<String, dynamic> data = <String, dynamic>{}; data['riderId'] = riderId; data['riderName'] = riderName; data['riderContact'] = riderContact; data['riderEmail'] = riderEmail; data['riderImgRef'] = riderImgRef; return data; } } Controller class ParofileController extends GetxController { RxMap<String, dynamic> profileDetails = <String, dynamic>{}.obs; //<============= Fetch and Assign DashBoard Today Details List void fetchandAssignProfileDetails() async { try { ProfileApiService().getProfileDetails().then((resp) { profileDetails.value = resp; }, onError: (err) { debugPrint(err.toString()); }); } catch (e) { debugPrint(e.toString()); } } } And API Service class ProfileApiService extends GetConnect { Future<ProfileModel?> getProfileDetails() async { Uri url = Uri.parse("${AppConfig.baseUrl}/Rider/GetRiderDetails"); var response = await http.get( url, ); if (response.statusCode == 200) { return ProfileModel.fromJson(jsonDecode(response.body)); } else { throw Exception('Failed to load User Profile'); } } } And Now my Question is How to Define this variable here ( RxMap<String, dynamic> profileDetails = <String, dynamic>{}.obs; ), that's why it's work properly
I solved this Rx<ProfileModel?> profile = ProfileModel().obs; thanks.
Flutter CircularProgressIndicator on top of syncfusion_calendar
I am struggling with correct futurebuilder positioning for last few days. Im using syncfusion_calendar package to display json data from my API, where i call a new reqest to API every time user changes calendars month. The problem is that user is not being told about ongoing data downlad and i would love to do that by showing CircularProgressIndicator instead of calendar while its loading. my pubspec file just in case : name: flutter_viaapp_startmenu description: A new Flutter application. # The following line prevents the package from being accidentally published to # pub.dev using `pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev # The following defines the version and build number for your application. # A version number is three numbers separated by dots, like 1.2.43 # followed by an optional build number separated by a +. # Both the version and the builder number may be overridden in flutter # build by specifying --build-name and --build-number, respectively. # In Android, build-name is used as versionName while build-number used as versionCode. # Read more about Android versioning at https://developer.android.com/studio/publish/versioning # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html version: 1.0.0+1 environment: sdk: ">=2.7.0 <3.0.0" dependencies: firebase_core: ^0.5.0+1 cloud_firestore: ^0.14.4 firebase_messaging: ^7.0.3 firebase_in_app_messaging: 0.2.3 webview_flutter: ^1.0.7 flutter_staggered_grid_view: ^0.3.3 easy_localization: ^2.3.2 intl: ^0.16.1 http: ^0.12.2 syncfusion_flutter_calendar: ^18.3.51 shared_preferences: ^0.5.12 flutter_local_notifications: ^3.0.3 flutter_localizations: sdk: flutter flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.0 dev_dependencies: flutter_test: sdk: flutter # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec # The following section is specific to Flutter. flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true # To add assets to your application, add an assets section, like this: assets: - assets/menu.jpg - assets/welcome.jpg - assets/translations/en.json - assets/translations/lv.json # An image asset can refer to one or more resolution-specific "variants", see # https://flutter.dev/assets-and-images/#resolution-aware. # For details regarding adding assets from package dependencies, see # https://flutter.dev/assets-and-images/#from-packages # To add custom fonts to your application, add a fonts section here, # in this "flutter" section. Each entry in this list should have a # "family" key with the font family name, and a "fonts" key with a # list giving the asset and other descriptors for the font. For # example: # fonts: # - family: Schyler # fonts: # - asset: fonts/Schyler-Regular.ttf # - asset: fonts/Schyler-Italic.ttf # style: italic # - family: Trajan Pro # fonts: # - asset: fonts/TrajanPro.ttf # - asset: fonts/TrajanPro_Bold.ttf # weight: 700 # # For details regarding fonts from package dependencies, # see https://flutter.dev/custom-fonts/#from-packages My main calendar file : import 'dart:async'; import 'dart:convert'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; import 'package:shared_preferences/shared_preferences.dart'; import 'package:syncfusion_flutter_calendar/calendar.dart'; import 'package:intl/intl.dart'; class Lecture_graph extends StatefulWidget { Lecture_graph({Key key}) : super(key: key); #override State<StatefulWidget> createState() => _MyLecturesGraphState(); } class _MyLecturesGraphState extends State<Lecture_graph> { Future<List<Lecture>> _future; List<Lecture> lectures; DateTime _selectedDate = new DateTime.now(); List<LectureTime> _times; //TODO make this empty after SO post var coursecode = "IT3"; #override void initState() { _selectedDate = new DateTime( _selectedDate.year, _selectedDate.month, 15, _selectedDate.hour, _selectedDate.minute, _selectedDate.second, _selectedDate.millisecond, _selectedDate.microsecond); _future = downloadData(); super.initState(); } #override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(coursecode + " | Lectures"), actions: [ LecturesNavigationControls(), ], ), body: lectureGraphList()); } Future<String> _checkSavedCourse() async { SharedPreferences prefs = await SharedPreferences.getInstance(); String _coursecode = prefs.getString('savedCourse'); if (_coursecode == "" || _coursecode == null) { Navigator.push( context, MaterialPageRoute(builder: (context) => CourseSelectionPage()), ); return null; } else { return _coursecode; } } Widget lectureGraphList() { return FutureBuilder<List<Lecture>>( future: _future, builder: (BuildContext context, AsyncSnapshot<List<Lecture>> snapshot) { if (snapshot.connectionState == ConnectionState.waiting) { return Center( child: SizedBox( child: const Expanded( child: Center(child: const CircularProgressIndicator())), width: 100, height: 100, ), ); } else { if (snapshot.hasError) return Center(child: Text('Error: ${snapshot.error}')); else return showLectures(lectures); } }, ); } //THIS FUNCTION IS CALLED EVERY TIME TO DOWNLOAD NEW DATA FROM API Future<List<Lecture>> downloadData() async { //get saved course if (coursecode == "" || coursecode == null) { coursecode = await _checkSavedCourse(); //debug print('courscode recieved from sharedprefs'); } //if there is no date selected, select today if (_selectedDate == null) _selectedDate = new DateTime.now(); //build request URL var requestURL = 'https://lekcijas.va.lv/lekcijas_android/getMonthLectures.php?date=' + DateFormat('yyyy-MM').format(_selectedDate) + "&breaks&program=" + coursecode; //wait for response var response = await http.get(requestURL); var data = json.decode(response.body)["result"]; //clear array after each request if (lectures != null) lectures.clear(); try { //create lectures from json response lectures = List<Lecture>.from(data.map((x) => Lecture.fromJson(x))); _getDataSource(lectures); } catch (e) { print(e.toString()); } return Future.value(lectures); } Widget showLectures(List<Lecture> lectures) { return Card( child: Row( children: [ Expanded( child: SfCalendar( view: CalendarView.month, firstDayOfWeek: 1, onViewChanged: (ViewChangedDetails details) { if (_selectedDate.month != details.visibleDates[15].month) { WidgetsBinding.instance.addPostFrameCallback((_) { _selectedDate = details.visibleDates[15]; setState(() { //CALENDAR MONTH CHANGE IS CALLED HERE downloadData(); }); }); } }, dataSource: LectureTimeDataSource(_times), monthViewSettings: MonthViewSettings( appointmentDisplayMode: MonthAppointmentDisplayMode.indicator, showAgenda: true, agendaStyle: AgendaStyle( appointmentTextStyle: TextStyle(color: Colors.black))), showNavigationArrow: true)) ], ), ); } void _getDataSource(List<Lecture> lectures) { var lectureTimes = <LectureTime>[]; lectures.forEach((element) { lectureTimes.add(LectureTime( (element.classroom + " " + element.lecture), DateTime.parse(element.datums + " " + element.start), DateTime.parse(element.datums + " " + element.end), hexToColor(element.color), false)); }); setState(() { _times = lectureTimes; }); } } class LecturesNavigationControls extends StatelessWidget { #override Widget build(BuildContext context) { return Row( children: <Widget>[ IconButton( //TODO find normal icon icon: const Icon(Icons.wheelchair_pickup), onPressed: () { Navigator.push( context, MaterialPageRoute(builder: (context) => CourseSelectionPage()), ); }, ), ], ); } } class LectureTimeDataSource extends CalendarDataSource { LectureTimeDataSource(List<LectureTime> source) { appointments = source; } #override DateTime getStartTime(int index) { return appointments[index].from; } #override DateTime getEndTime(int index) { return appointments[index].to; } #override String getSubject(int index) { return appointments[index].eventName; } #override Color getColor(int index) { return appointments[index].background; } #override bool isAllDay(int index) { return appointments[index].isAllDay; } } class LectureTime { LectureTime( this.eventName, this.from, this.to, this.background, this.isAllDay); String eventName; DateTime from; DateTime to; Color background; bool isAllDay; } Color hexToColor(String code) { return new Color(int.parse(code.substring(1, 7), radix: 16) + 0xFF000000); } class Lecture{ final String programs; final String lecture; final String lecturer; final String start; final String end; final String classroom; final String color; final String datums; Lecture({this.programs, this.lecture, this.lecturer, this.start, this.end, this.classroom, this.color, this.datums}); factory Lecture.fromJson(Map<String, dynamic> json) { return Lecture( programs: json['nodala'] as String, lecture: json['kurss'] as String, lecturer : json['lektors'] as String, start: json['sakums'] as String, end: json['beigas'] as String, classroom: json['nosaukums'] as String, color: json['iela'] as String, datums: json['datums'] as String, ); } } class LectureTime { LectureTime( this.eventName, this.from, this.to, this.background, this.isAllDay); String eventName; DateTime from; DateTime to; Color background; bool isAllDay; } please use "IT3" string as coursecode for API. API request url example here
You can add a variable called downloadingData and set it to false by default. Then, before calling downloadData() set it to true and when the function finishes, set it back to false. Finally, inside the build method: child: downloadingData ? CircularProgressIndicator() : SfCalendar(...)
Based on the provided information and code snippet, we have checked, and your requirement is “Showing the CircularProgressIndicator when loading calendar”. We have prepared a simple sample for loading circular progress indicator with loading online data to the calendar. Please find the sample from the following link, Sample link: https://www.syncfusion.com/downloads/support/directtrac/312448/ze/minimum_appointmentduration298839661.zip Also, we have a KB document for loading the online data to Flutter calendar with a simple loading text message. In the same way, you will use CircularProgressIndicator. KB link: https://www.syncfusion.com/kb/11568/how-to-load-the-json-data-online-to-the-flutter-event-calendar-sfcalendar-appointments We hope that the above sample and KB helps you. Please let us know if you need further assistance.
setState() or markNeedsBuild() called during build
I am trying to launch a 'How to Use' screen if the app launches for the first time using a FutureBuilder(). isFisrtTime() returns true if the app is launched for the first time. Here is the FutureBuilder code: body: FutureBuilder( future: isFirstTime(), initialData: Container(), builder: (context, snapshot){ if(snapshot.data == true){ Navigator.pushNamed(context, '/howtouse'); return (currentScreen == 'Home') ? HomeBody() : CBook(changeScreen: changeCurrentScreen); } else { return (currentScreen == 'Home') ? HomeBody() : CBook(changeScreen: changeCurrentScreen); } }, ), Please Help
You can't push a new Route during build. Move the logic to your initState instead. #override void initState() { isFirstTime().then((data) { if(data) { Navigator.pushNamed(context, '/howtouse'); } } super.initState(); }
Flutter Stubbing : use Stub method's return value property
Hi this is the method i want to stub : the checkLimit method. class MyClass { final ResponseBase isAvailable = await sampleRepository.checkLimit(data: _data); if (isAvailable.status == ResponseStatus.notOk) { yield NotAvailable( ErrorType.limit, data: _data, errorResponse: isAvailable?.responseError, ); return; } } This is my Test test('test when event is ScanQRCode checklimit not ok', () { final List<ScanState> expectedStates = <CodeScanState>[ ScanReady(), ScanAvailableFetching(), ScanNotAvailable( ScanErrorType.Limit, redeemData: mockRedeemData, ), ]; when(mockPromosRepository.checkLimit( redeemData: mockRedeemData)) .thenAnswer( (_) => Future<ResponseBase>.value(mockResponseBase.status)); expectLater(scanBloc.state, emitsInAnyOrder(expectedStates)); scanBloc.dispatch(ScanQRCode(mockRedeemData)); }); what should be my return data to through the if condition ? thanks
Zend\Stdlib\Exception\BadMethodCallException
Here the part of the stacktrace where I have a problem: Zend\Stdlib\Exception\BadMethodCallException File: /var/www/html/zf2/vendor/zendframework/zendframework/library/Zend/Stdlib/Hydrator/ArraySerializable.php:28 Message: Zend\Stdlib\Hydrator\ArraySerializable::extract expects the provided object to implement getArrayCopy() Stack trace: 0 /var/www/html/zf2/vendor/zendframework/zendframework/library/Zend/Form/Fieldset.php(631): Zend\Stdlib\Hydrator\ArraySerializable->extract(Object(BookList\Model\Book)) 1 /var/www/html/zf2/vendor/zendframework/zendframework/library/Zend/Form/Form.php(942): Zend\Form\Fieldset->extract() 2 /var/www/html/zf2/vendor/zendframework/zendframework/library/Zend/Form/Form.php(303): Zend\Form\Form->extract() 3 /var/www/html/zf2/module/BookList/src/BookList/Controller/BookController.php(59): Zend\Form\Form->bind(Object(BookList\Model\Book)) The action method in my Controller that call bind: public function editAction() { $id = (int) $this->params()->fromRoute('id', 0); if (!$id) { return $this->redirect()->toRoute('book'); } try { $book = $this->getBookTable()->getBook($id); } catch (\Exception $ex) { return $this->redirect()->toRoute('book', array( 'action' => 'index' )); } $form = new BookForm(); $form->bind($book); // this is the line 59 of BookController $form->get('submit')->setAttribute('value', 'Edit'); $request = $this->getRequest(); if ($request->isPost()) { $form->setInputFilter($book->getInputFilter()); $form->setData($request->getPost()); if ($form->isValid()) { $this->getBookTable()->saveBook($book); // Redirect to list of books return $this->redirect()->toRoute('book'); } } return array( 'id' => $id, 'form' => $form, ); } I checked also the BookTable class to see the object returned from the resulset and it's an istance of Book. Than I opened the ArratSerializable.php and check the object passed and tre response is: BookList\Model\Book Object ( [id] => 5 [author] => Gotye [title] => Making Mirrors [inputFilter:protected] => ) So it's a correct object, why doesn't it work?
How the result is returned you generally tell that to the ResultSet object while building your model. You actually set a prototype there for returning your result set saying, hey! "Use this prototype" which is, in your case, Book model. It does have a method called getArrayCopy() which is missing. That actually rises error in this case. So please add this to the Book model thus class Book { // other properties and methods should be here // add this method here public function getArrayCopy() { return get_object_vars($this); } }