<small id='4Zrop'></small><noframes id='4Zrop'>

      <bdo id='4Zrop'></bdo><ul id='4Zrop'></ul>

      <legend id='4Zrop'><style id='4Zrop'><dir id='4Zrop'><q id='4Zrop'></q></dir></style></legend>

      1. <tfoot id='4Zrop'></tfoot>
      2. <i id='4Zrop'><tr id='4Zrop'><dt id='4Zrop'><q id='4Zrop'><span id='4Zrop'><b id='4Zrop'><form id='4Zrop'><ins id='4Zrop'></ins><ul id='4Zrop'></ul><sub id='4Zrop'></sub></form><legend id='4Zrop'></legend><bdo id='4Zrop'><pre id='4Zrop'><center id='4Zrop'></center></pre></bdo></b><th id='4Zrop'></th></span></q></dt></tr></i><div id='4Zrop'><tfoot id='4Zrop'></tfoot><dl id='4Zrop'><fieldset id='4Zrop'></fieldset></dl></div>

        如何使用 discord.py 列出不和谐服务器中的所有成

        时间:2023-09-11

            • <tfoot id='WYngT'></tfoot>
                <bdo id='WYngT'></bdo><ul id='WYngT'></ul>

              • <small id='WYngT'></small><noframes id='WYngT'>

                <legend id='WYngT'><style id='WYngT'><dir id='WYngT'><q id='WYngT'></q></dir></style></legend>
                  <tbody id='WYngT'></tbody>
                <i id='WYngT'><tr id='WYngT'><dt id='WYngT'><q id='WYngT'><span id='WYngT'><b id='WYngT'><form id='WYngT'><ins id='WYngT'></ins><ul id='WYngT'></ul><sub id='WYngT'></sub></form><legend id='WYngT'></legend><bdo id='WYngT'><pre id='WYngT'><center id='WYngT'></center></pre></bdo></b><th id='WYngT'></th></span></q></dt></tr></i><div id='WYngT'><tfoot id='WYngT'></tfoot><dl id='WYngT'><fieldset id='WYngT'></fieldset></dl></div>
                  本文介绍了如何使用 discord.py 列出不和谐服务器中的所有成员?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在编写一个不和谐的机器人,在尝试使用命令 !members in on_message 事件从服务器中提取所有成员时遇到此错误:

                  I am writing a discord bot and I came across this error when trying to pull all the members from a server with the command !members in on_message event:

                  elif message.content.startswith('!members'):
                      x = server.Server.members
                      for member in x:
                          print(member)
                  

                  我希望这个命令拉出所有成员并在控制台中打印出来,但我得到了错误

                  I want this command to pull all members and print them out in the console but I get the error

                  TypeError: 'property' 对象不可迭代

                  TypeError: 'property' object is not iterable

                  当我在不和谐频道中输入命令时.谁能帮我列出频道中所有成员的列表以供进一步使用?

                  when I type the command in the discord channel. Could anyone help me make a list of all members in the channel that I can have for further use?

                  推荐答案

                  你需要一个服务器实例来从中获取成员列表.

                  You need an instance of a server to get the members list from it.

                  假设此代码出现在 on_message(message) 中,您应该可以更改您的

                  Assuming this code appears in on_message(message), you should be able to change your

                  x = server.Server.members
                  

                  x = message.server.members
                  

                  请注意,使用带有大写 S 的 Server 将返回类定义,而使用消息中的 server 属性(小写 s)将检索 Server 的实例.

                  Note that using Server with a capital S will return the class definition, whereas using the server property (lowercase s) from the message will retrieve an instance of Server.

                  如果您使用的版本 >= 1.0.0,则为

                  If you're using a version >= 1.0.0, this will be

                  x = message.guild.members
                  

                  改为.

                  这篇关于如何使用 discord.py 列出不和谐服务器中的所有成员?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何更改 discord.py 机器人活动 下一篇:将 Python 列表导出到 Excel

                  相关文章

                  最新文章

                  <tfoot id='9V82T'></tfoot>
                  <legend id='9V82T'><style id='9V82T'><dir id='9V82T'><q id='9V82T'></q></dir></style></legend>

                  <i id='9V82T'><tr id='9V82T'><dt id='9V82T'><q id='9V82T'><span id='9V82T'><b id='9V82T'><form id='9V82T'><ins id='9V82T'></ins><ul id='9V82T'></ul><sub id='9V82T'></sub></form><legend id='9V82T'></legend><bdo id='9V82T'><pre id='9V82T'><center id='9V82T'></center></pre></bdo></b><th id='9V82T'></th></span></q></dt></tr></i><div id='9V82T'><tfoot id='9V82T'></tfoot><dl id='9V82T'><fieldset id='9V82T'></fieldset></dl></div>
                  • <bdo id='9V82T'></bdo><ul id='9V82T'></ul>

                  <small id='9V82T'></small><noframes id='9V82T'>