contains(regexp) 关于 QML 中可能的 Qstring/字符串
我在 QML 中有一个代码片段,它应该在 screen.text 中查找正则表达式“Calling”,如果找不到,只有这样它才会更改 screen.text。不幸的是,QML/QString < 中的文档不清楚a href="http://doc.qt.nokia.com/4.7-snapshot/qstring.html#QString" rel="noreferrer">文档。
Button{
id: call
anchors.top: seven.bottom
anchors.left: seven.left
text: "Call"
width: 40
onClicked:{
if(screen.text.toString().startsWith("Calling" , false))
return;
else
screen.text = "Calling " + screen.text
}
}
我得到的错误是:
文件:///home/arnab/workspace/desktop/examples/cellphone.qml:127: 类型错误:表达式“screen.text.toString().startsWith”的结果 [未定义] 不是一个函数。
I have a code snippet in QML which should look for the regexp "Calling" in screen.text, and if it is not found, only then does it change the screen.text.Unfortunately, the documentation is not clear in QML/QString documentation.
Button{
id: call
anchors.top: seven.bottom
anchors.left: seven.left
text: "Call"
width: 40
onClicked:{
if(screen.text.toString().startsWith("Calling" , false))
return;
else
screen.text = "Calling " + screen.text
}
}
The error I get is :
file:///home/arnab/workspace/desktop/examples/cellphone.qml:127:
TypeError: Result of expression 'screen.text.toString().startsWith'
[undefined] is not a function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
就像其他两个答案所示:
toString()
给出了一个JavaScript字符串,而不是QString
,并且JavaScript字符串没有startsWith()
>。使用所示的解决方法之一。Like the other two answers indicate:
toString()
gives a JavaScript string, not aQString
, and the JavaScript string does not have astartsWith()
. Use one of the workarounds shown.您必须在处理程序中使用 Javascript 函数:
You have to use Javascript functions in the handler:
因为函数“startsWith”不是标准函数。
不能说您是否可以在 QML JS 中使用原型,但您使用此代码:
或仅
if(screen.text.toString().match("^Calling")==screen.text.toString())
更多内容请阅读:http://www.tek-tips.com/faqs.cfm?fid=6620
Because function "startsWith" is not standard function.
Can't say if you can use prototypes in QML JS but you use this code:
or only
if(screen.text.toString().match("^Calling")==screen.text.toString())
more to read here: http://www.tek-tips.com/faqs.cfm?fid=6620