TypeError:TextIOWrapper类型的对象不可JSON序列化

5n0oy7gb  于 2022-12-24  发布在  其他
关注(0)|答案(2)|浏览(185)

如果代码能够正常工作,那么每当有人在聊天中键入内容时,他们都会获得5次经验,这些信息会被放入一个.json文件中,但相反,每当有人在聊天中键入内容时,它都会给我这个错误。

on_message users = json.dumps(f) 
TypeError: Object of type TextIOWrapper is not JSON serializable

下面是我正在使用的代码:

import discord
from discord.ext import commands
from discord.ext.commands import Bot
import asyncio
import json
from json import dumps, loads, JSONEncoder, JSONDecoder
import os

client = commands.Bot(command_prefix='^')
os.chdir(r'C:\Users\quiny\Desktop\sauce')

@client.event
async def on_ready():
    print ("Ready when you are xd")
    print ("I am running on " + client.user.name)
    print ("With the ID: " + client.user.id)

@client.event
async def on_member_join(member):
    with open('users.json', 'r') as f: 
        users = json.dumps(f)

    await update_data(users, member)

    with open('users.json', 'w') as f:
        json.loads("users, f")

@client.event
async def on_message(message):
    with open('users.json', 'r') as f:
        users = json.dumps(f)

    await update_data(users, message.author)
    await add_experience(users, message.author, 5)
    await level_up(users, message.author, message.channel)

    with open('users.json', 'w') as f:
        json.loads("users, f")

async def update_data(users, user):
    if not user.id in users:
        users[user.id] = {}
        users[user.id]['experience'] = 0
        users[user.id]['level'] = 1

async def add_experience(users, user, exp):
    users[user.id]['experience'] += exp

async def level_up(users, user, channel):
    experience = users[user.id]['experience']
    lvl_start = users[user.id]['level']
    lvl_end = int(experience ** (1/4))

    if lvl_start < lvl_end:
        await client.send_message(channel, '{} has achieved a slightly higher 
level of {}, yay'.format(user.mention, lvl_end))
        users[user.id]['level'] = lvl_end
enyaitl3

enyaitl31#

我遇到了这个错误,我用错了json.dump

正确方式:

with open("Jello.json", "w") as json_file:
    json.dump(object_to_be_saved, json_file)

错误的方式:

我用相反的方法来处理json.dump(json_file, object_to_be_saved) ...谢谢Python。

xesrikrc

xesrikrc2#

您的loadsdumps颠倒了,应该使用loaddump(后缀s表示这些函数处理字符串)。load从文件,dump到文件

users = {}

@client.event
async def on_message(message):
    # No need to load the dictionary, our copy is the most correct
    await update_data(users, message.author)
    await add_experience(users, message.author, 5)
    await level_up(users, message.author, message.channel)
    with open('users.json', 'w') as f:
        json.dump(users, f)

@client.event
async def on_ready():
    print ("Ready when you are xd")
    print ("I am running on " + client.user.name)
    print ("With the ID: " + client.user.id)
    # Load the json just once, when the bot starts
    global users
    with open('users.json') as f:
        try:
            users = json.load(f)
        except:
            users = {}

相关问题