我遵循Emscripten随附的Synchronous Fetch示例,如下所示;
void main()
{
emscripten_fetch_attr_t attr;
emscripten_fetch_attr_init(&attr);
strcpy(attr.requestMethod, "GET");
attr.attributes = EMSCRIPTEN_FETCH_LOAD_TO_MEMORY | EMSCRIPTEN_FETCH_SYNCHRONOUS;
emscripten_fetch_t *fetch = emscripten_fetch(&attr, "https://ichef.bbci.co.uk/news/660/cpsprodpb/E9DF/production/_96317895_gettyimages-164067218.jpg");
printf("Fetch finished with status %d\n", fetch->status);
}
它始终从获取状态返回0
我用
进行编译FLAGS += -std=c++17 -stdlib=libc++ -O3
FLAGS += -s WASM=1 -s USE_WEBGL2=1 -s FULL_ES3=1
FLAGS += -s ALLOW_MEMORY_GROWTH=1
FLAGS += -o hello.html
FLAGS += -s "EXTRA_EXPORTED_RUNTIME_METHODS=['ccall', 'cwrap']"
FLAGS += --no-heap-copy
FLAGS += -s FETCH=1
但是,当我使用异步进行测试并读取OnSuccess函数中的数据时。数据可以正确打印
static
void ondownload_success(emscripten_fetch_t *fetch)
{
printf("[ download ][ OK ] %llu bytes [ URL ]: %s\n", fetch->numBytes, fetch->url);
printf("%c %c %c", fetch->data[0], fetch->data[3], fetch->data[2] );
emscripten_fetch_close(fetch); // Free data associated with the fetch.
}
我的提取同步代码有什么问题?一切都与“ example_synchronous_fetch.cpp”示例完全相同
我在Windows10上运行。脚本1.38.29。使用Microsoft Edge无需服务器即可直接浏览文件(双击hello.html)
答案 0 :(得分:1)
同步fetch
有一些额外的限制,看来您的构建标记没有启用同步fetch
:
同步脚本获取操作受许多限制 限制,具体取决于哪种Emscripten构建模式(链接器标志) 用于:
无标志:仅异步提取操作可用。
-proxy-to-worker:仅执行XHR但不与IndexedDB交互的访存允许进行同步访存操作。
-s USE_PTHREADS = 1:同步获取操作在pthread上可用,但在主线程上不可用。
–proxy-to-worker + -s USE_PTHREADS = 1:同步访存操作在主线程和pthread上均可用。
https://emscripten.org/docs/api_reference/fetch.html#synchronous-fetches