WebGL 发布问题求帮助

An error occured running the Unity content on this page. See your browser JavaScript console for more info. The error was:
uncaught exception: abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/kripken/emscripten/wiki/Linking") at jsStackTrace (www09dxcom_1_0_171227181404.asm.framework.unityweb:2:27460)
stackTrace (www09dxcom_1_0_171227181404.asm.framework.unityweb:2:27631)
abort (www09dxcom_1_0_171227181404.asm.framework.unityweb:4:34650)
_dlopen (www09dxcom_1_0_171227181404.asm.framework.unityweb:2:185080)
pnu (blob:24:1)
axu (blob:24:1)
Sbu (blob:24:1)
Dhg (blob:14:1)
kEg (blob:14:1)
eGg (blob:14:1)
lJg (blob:14:1)
QKg (blob:15:1)
OKg (blob:15:1)
cEp (blob:4:1)
lRu (blob:24:1)
invoke_iiii (www09dxcom_1_0_171227181404.asm.framework.unityweb:2:359496)
kVt (blob:24:1)
KZt (blob:24:1)
sqa (blob:13:1)
qqa (blob:13:1)
_jb (blob:21:1)
Zjb (blob:21:1)
efc (blob:20:1)
GRb (blob:19:1)
oeb (blob:21:1)
_Ca (blob:13:1)
NCa (blob:13:1)
PQu (blob:24:1)
browserIterationFunc (www09dxcom_1_0_171227181404.asm.framework.unityweb:2:47998)
runIter (www09dxcom_1_0_171227181404.asm.framework.unityweb:2:51090)
Browser_mainLoop_runner (www09dxcom_1_0_171227181404.asm.framework.unityweb:2:49535)

If this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information.
这个怎么回事

http://blog.csdn.net/qq_26270779/article/details/65632792

请问这个问题你是怎么解决的?我也遇到了这样的问题

你引用了动态链接库导致了错误,这是WEBGL不支持的,你可以通过阅读以下官方网址 https://docs.unity3d.com/Manual/webgl-interactingwithbrowserscripting.html , 找到答案,另外在引用静态库"__internal"的时候要注意,这里是两个"_",如果只打了一个,它会误以为在调用动态链接库,那么也会报这个错误,请采纳