我想更改服务器图标。 试试看:
(() => {
const my_h1 = React.DOM.h1(null,"Stuff") // TypeError: Cannot read property 'h1' of undefined
ReactDOM.render(my_h1,document.getElementById('root'))
})()
答案 0 :(得分:0)
您需要传递icon
,类似于bytes
的对象。因此,如果您有文件image.jpg
,则可以
with open('image.jpg', 'rb') as f:
icon = f.read()
await bot.edit_server(ctx.message.server, icon=icon)
在您的示例中,您需要将该图像下载到bytes
中,然后将其用于edit_server