Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些需要对一些 C++ 数据进行操作的 QtScript。我已经通过 公开了许多变量QScriptEngine::globalObject().setProperty(),但这似乎只适用于简单数据类型和 QStrings。
QScriptEngine::globalObject().setProperty()
我试过使用QScriptEngine::newVariant(),但没有一个QVariant成员函数暴露给脚本引擎。
QScriptEngine::newVariant()
QVariant
理想情况下,我希望能够将 QStringList 转换为普通的 QtScript 数组并在其上调用本机数组函数。有没有办法做到这一点?
我想你在追求qScriptValueFromSequence。
qScriptValueFromSequence