gpt4 book ai didi

javascript - 如何在 Clearscript 中序列化已编译的 V8Script?

转载 作者:太空宇宙 更新时间:2023-11-03 23:10:01 30 4
gpt4 key购买 nike

我正在使用 ClearScript 编译一些 JavaScript,然后我想将其序列化以将其存储在 SQL 中。但是它被标记为不可序列化,我该怎么办?

V8ScriptEngine engine = new V8ScriptEngine();
V8Script compiled = engine.Compile("var a = 'test'");
using (MemoryStream ms = new MemoryStream())
{
new BinaryFormatter().Serialize(ms, compiled);
string compiledString = Convert.ToBase64String(ms.ToArray());
}

我收到这个错误:

Additional information: Type 'Microsoft.ClearScript.V8.V8ScriptImpl' in Assembly 'ClearScriptV8-32, Version=5.4.6.0, Culture=neutral, PublicKeyToken=935d0c957da47c73' is not marked as serializable.

最佳答案

V8 编译的脚本绑定(bind)到创建它的隔离实例,因此序列化它没有意义。您不能在不同的进程中重用它,甚至不能在同一进程中使用另一个隔离。还有更多信息herehere .

关于javascript - 如何在 Clearscript 中序列化已编译的 V8Script?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39605300/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com