标签: qt qtscript
如何将匿名函数放入对象/变量并存储以供以后调用?
假设我有这个JS:
callMeLater = function(){var foobar = "baz!";}
如何从callMeLater存储QScriptValue object? object.toString(),以便我可以将其提供给engine.evaluate以后,遗憾的是无法正常工作。 我只需用JS内部的字符串填充callMeLater,但这感觉不对。
callMeLater
QScriptValue object
object.toString()
engine.evaluate