truffle(开发)> TodoList =等待TodoList.deployed() 未捕获: 错误:TodoList 尚未部署到检测到的网络(网络/工件不匹配) 在 processTicksAndRejections (节点:内部/进程/task_queues:96:5) 在 /usr/local/lib/node_modules/truffle/build/webpack:/packages/truffle-contract/lib/contract/constructorMethods.js:113:1
Please follow the steps:
创建另一个名为 2_anyname.js 的文件(确保它没有 以 1 开头,您可以在迁移文件夹中将其命名为任何名称。
将此内容粘贴到文件中
var contract_name = artifacts.require('contract_name');
module.exports = function (deployer) {
deployer.deploy(contract_name); };
按以下顺序运行命令:trufflecompile -> truffle migrate --reset 或 truffle deploy --reset -> truffle console
你可以走了!!
我在松露控制台中得到它,但在浏览器中却没有。我现在该怎么办?