研究调查问卷:请告诉我们您使用 Blockly 的体验
开始调查问卷
blockly >ConnectionChecker
ConnectionChecker 类
用于连接类型检查逻辑的类。
Signature:
export declare class ConnectionChecker implements IConnectionChecker
实现:IConnectionChecker
方法
方法 |
修饰符 |
说明 |
canConnect(a, b, isDragging, opt_distance) |
|
检查当前连接是否可以与目标连接连接。 |
canConnectToPrevious_(a, b) |
protected |
用于拖动检查的辅助函数。 |
canConnectWithReason(a, b, isDragging, opt_distance) |
|
检查当前连接是否可以与目标连接建立连接,如果存在问题,则返回错误代码。 |
doDragChecks(a, b, distance) |
|
检查是否可以通过拖动建立此关联。 |
doSafetyChecks(a, b) |
|
检查连接给定连接是否安全,即不会破坏 Blockly 的任何基本假设(例如,不允许自连接)。 |
doTypeChecks(a, b) |
|
检查此连接是否与有关值类型系统的其他连接兼容。例如square_root("Hello") 不兼容。 |
getErrorMessage(errorCode, a, b) |
|
可将连接错误代码转换为字符串的辅助方法。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-10-16。
[null,null,["最后更新时间 (UTC):2024-10-16。"],[[["The `ConnectionChecker` class in Blockly manages the logic for validating connections between blocks."],["It provides methods to check connection compatibility based on type, safety, and drag restrictions."],["These checks ensure that connections adhere to Blockly's rules and prevent invalid block configurations."],["Developers can use `ConnectionChecker` to determine if two connections can be joined and understand the reasons for any connection failures."]]],[]]