启动truffle console并键入Greeter.deployed().setGreeting("Hello world!");
我收到以下错误:
TypeError: Greeter.deployed(...).setGreeting is not a function我怎样才能解决这个问题?希望你的回答!如下图所示:

发布于 2017-11-14 15:16:41
你的代码
Greeter.deployed().setGreeting("Hello world!");不工作,因为.deployed()返回一个承诺。承诺中没有setGreeting函数。
相反,你应该做
Greeter.deployed().then(instance => {
instance.setGreeting("hello world");
});可以在一行Greeter.deployed().then(i=>i.setGreeting("hello world"))中键入
https://ethereum.stackexchange.com/questions/30708
复制相似问题