- Solidity 教程
- Solidity - 主页
- Solidity - 概述
- Solidity - 环境设置
- Solidity - 基本语法
- Solidity - 首次应用
- Solidity - 评论
- 坚固性 - 类型
- Solidity - 变量
- Solidity - 可变范围
- Solidity - 运算符
- 坚固性 - 循环
- Solidity - 决策
- 坚固性 - 弦乐
- Solidity - 数组
- Solidity - 枚举
- Solidity - 结构
- Solidity - 映射
- 坚固性 - 转换
- Solidity - 以太币单位
- Solidity - 特殊变量
- Solidity - 风格指南
- 实体函数
- Solidity - 函数
- Solidity - 函数修饰符
- Solidity - 查看函数
- Solidity - 纯函数
- Solidity - 后备函数
- 函数重载
- 数学函数
- 加密函数
- Solidity 常见模式
- Solidity - 提款模式
- Solidity - 限制访问
- 坚固进阶
- Solidity - 合约
- 坚固性——继承
- Solidity - 构造函数
- Solidity - 抽象合约
- Solidity - 接口
- Solidity - 库
- 坚固性 - 装配
- Solidity - 活动
- Solidity - 错误处理
- Solidity 有用资源
- Solidity - 快速指南
- Solidity - 有用的资源
- 坚固性 - 讨论
Solidity - 活动
事件是合约的可继承成员。发出一个事件,它存储事务日志中传递的参数。这些日志存储在区块链上,并且可以使用合约地址进行访问,直到合约出现在区块链上为止。生成的事件无法从合约内部访问,即使是创建和发出事件的事件也是如此。
可以使用 event 关键字声明事件。
//Declare an Event event Deposit(address indexed _from, bytes32 indexed _id, uint _value); //Emit an event emit Deposit(msg.sender, _id, msg.value);
例子
尝试以下代码来了解事件在 Solidity 中的工作原理。
首先创建一个合约并发出一个事件。
pragma solidity ^0.5.0; contract Test { event Deposit(address indexed _from, bytes32 indexed _id, uint _value); function deposit(bytes32 _id) public payable { emit Deposit(msg.sender, _id, msg.value); } }
然后在 JavaScript 代码中访问合约的事件。
var abi = /* abi as generated using compiler */; var ClientReceipt = web3.eth.contract(abi); var clientReceiptContract = ClientReceipt.at("0x1234...ab67" /* address */); var event = clientReceiptContract.Deposit(function(error, result) { if (!error)console.log(result); });
它应该打印类似于以下的详细信息 -
输出
{ "returnValues": { "_from": "0x1111...FFFFCCCC", "_id": "0x50...sd5adb20", "_value": "0x420042" }, "raw": { "data": "0x7f...91385", "topics": ["0xfd4...b4ead7", "0x7f...1a91385"] } }