Solidity 可见性修饰符
External external 是合同的一部分,这意味着可以从其他合同和交易中调用它们。 外部方法 f 不能在内部调用(即 f()不起作用,但 this.f()起作用…
React 创建组件与渲染组件:component
第一个 React 组件: var CommentBox = React.createClass({ render: function() { return ( Hello, world! I am a CommentBox. ); } }); React.rende…
- 共 1 页
- 1