有什么办法用字符串数据加载QQuickView吗?
据我所知,只有void QQuickView::setSource(const QUrl & url)

我可以用字符串数据加载QQmlComponent,但是现在如何将该组件分配给QQuickView呢?

最佳答案

您可以在创建QQuickView时传递QQmlComponent引擎:

QQmlComponent component(view->engine(), QUrl("path/to/file.qml"));

10-07 13:01