Creator <Label> 组件问题,我没理解机制的原因?

同都是label,
一个通过赋值properties ,然后设置string,
另外一个通过cc.find来设置string ,
结果拖拽赋值的那个string 设置并显示,
通过查找赋值的那个label,不显示,(确定label已经找到了,并且log里面也打印了string 是设置成功了的

)

cc.find 返回的是 Node,不是 Label

需要再调用 node.getComponent(cc.Label) 才能获得 label

文档写的很清楚:

http://www.cocos.com/docs/creator/scripting/access-node-component.html#--2

打自己耳屎!不看文档! 看到了。