颤振数据信机会

时间:2021-01-08 06:33:12

标签: flutter dart

我从我的数据库中获取数据。我将数据保存在数据库中,例如 LRESULT CALLBACK WindowCallback(HWND window, UINT message, WPARAM wParam, LPARAM lParam) { if (message == WM_SIZE) { // This event gets called a lot // Handle window resize return 0; } else { return DefWindowProc(window, message, wParam, lParam); } } int APIENTRY WinMain(HINSTANCE instance, HINSTANCE prev, LPSTR cmd, int numCmd) { WNDCLASSA class = {}; class.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW; class.lpfnWndProc = WindowCallback; class.lpszClassName = "Name"; class.hInstance = instance; RegisterClassA(&class)l HWND win = CreateWindowExA(0, class.lpszClassName, "Name", WS_VISIBLE | WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 600, 400, 0, 0, instance, 0); while(true) { // Handle Events MSG msg = {}; while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) { if (msg.message == WM_QUIT) break; TranslateMessage(&msg); DispatchMessage(&msg); } // Do Updating of State and Graphics Rendering Here } } 。但我想将我的数据粘贴到屏幕上,如 Ä°vme Hızlandırma

我试着像下面那样解决这个问题。但是我的没有解决。我该如何解决这个问题?

İvme Hızlandırma

1 个答案:

答案 0 :(得分:1)

我的问题已通过以下代码解决。

String responseUtf8Decoded = utf8.decode(response.bodyBytes);
var jsonDecoded = json.decode(responseUtf8Decoded);