admin管理员组文章数量:1352011
I am trying to dynamically create objects in qml-javascript.The function which creates the object is:
function createSpriteObjects(xPos,yPos,cnt,imgsrc,jsonObject) {
var title;
title = jsonObject.matches[cnt].recipeName;
var ponent = Qt.createComponent("FlickItem.qml");
ponent.createObject(wall.contentItem, {"color":"white", "x":xPos,"y":yPos,"src":imgsrc,"opacity":1,"title":title});
}
The recieving file(FlickItem.qml) has a property string title which is later assigned to the text field of the Text item:
import QtQuick 2.0
Rectangle {
id: name
opacity: 0
property string title: ""
width:100
height:100
color:"white"
property string src: ""
Image {
id:recipeimages
source: src
width:240
height:160
}
Text {
id: title
anchors.bottom: recipeimages.bottom
anchors.horizontalCenter: recipeimages.horizontalCenter
anchors.bottomMargin: 5
color: "white"
font.pixelSize: 24
text:title
}
the following error is returned:
unable to assign QQuickText to QString
Any way around this?
I am trying to dynamically create objects in qml-javascript.The function which creates the object is:
function createSpriteObjects(xPos,yPos,cnt,imgsrc,jsonObject) {
var title;
title = jsonObject.matches[cnt].recipeName;
var ponent = Qt.createComponent("FlickItem.qml");
ponent.createObject(wall.contentItem, {"color":"white", "x":xPos,"y":yPos,"src":imgsrc,"opacity":1,"title":title});
}
The recieving file(FlickItem.qml) has a property string title which is later assigned to the text field of the Text item:
import QtQuick 2.0
Rectangle {
id: name
opacity: 0
property string title: ""
width:100
height:100
color:"white"
property string src: ""
Image {
id:recipeimages
source: src
width:240
height:160
}
Text {
id: title
anchors.bottom: recipeimages.bottom
anchors.horizontalCenter: recipeimages.horizontalCenter
anchors.bottomMargin: 5
color: "white"
font.pixelSize: 24
text:title
}
the following error is returned:
unable to assign QQuickText to QString
Any way around this?
Share Improve this question edited Apr 9, 2013 at 2:59 Chris Dargis 6,0534 gold badges41 silver badges66 bronze badges asked Apr 8, 2013 at 23:34 Parth ModyParth Mody 753 silver badges8 bronze badges1 Answer
Reset to default 11Rectangle {
id: name
//...
property string title: "" <------ title
//...
}
Text {
//...
id: title <----- title
//...
text:title <---- which title ?!?!?!
}
The problem is you have a property
bound to the title identifier, and an id
bound to the title identifier. Based on your output, you are likely trying to assign text from the id
(and not the property
).
Changing the id
of your Text
ponent should solve your problem.
本文标签: javascriptunable to assign QQuickText to QStringStack Overflow
版权声明:本文标题:javascript - unable to assign QQuickText to QString - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743906816a2559672.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论