我正在使用包 curl 来发出 Http 请求(以及使用正则表达式的包 str)。我正在我的项目中编译文件,没问题,当我用 js_of_ocaml 编译 file.byte 时,我有这些错误:
js_of_ocaml --禁用 genprim foo.byte
Missing primitives:
helper_curl_easy_cleanup
helper_curl_easy_duphandle
helper_curl_easy_getinfo
helper_curl_easy_init
helper_curl_easy_perform
helper_curl_easy_setopt
helper_curl_global_init
re_search_forward
re_string_match
当我包含生成的 js 文件时,我在 Web 控制台中出现此错误: Uncaught ReferenceError: helper_curl_global_init is not defined
我知道缺少原语,这导致了我遇到的错误,但是有解决方案来解决这个问题吗?