Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/django/20.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python Django-在/uploadd未损坏类型时出现类型错误:';dict';_Python_Django - Fatal编程技术网

Python Django-在/uploadd未损坏类型时出现类型错误:';dict';

Python Django-在/uploadd未损坏类型时出现类型错误:';dict';,python,django,Python,Django,当我点击函数upload时,我试图将document对象返回为json。我得到以下错误 /UPLOADD不可损坏类型时出现类型错误:“dict” 这就是函数 def uploaddd(request): documents = { { "@search.action": "upload", "HotelId": "1",

当我点击函数upload时,我试图将document对象返回为json。我得到以下错误

/UPLOADD不可损坏类型时出现类型错误:“dict”

这就是函数

def uploaddd(request):
    documents = {
        {
            "@search.action": "upload",
            "HotelId": "1",
            "HotelName": "Secret Point Motel 2020",
            "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
            "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
            "Category": "Boutique",
            "Tags": [ "pool", "air conditioning", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1970-01-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "677 5th Ave",
                "City": "New York",
                "StateProvince": "NY",
                "PostalCode": "10022",
                "Country": "USA"
            }
        },
    
    }    
    return JsonResponse({'doc': documents })
该问题是“国家”的最新条目:“美国”

有什么想法吗

编辑-显示对象中包含的多个文档

def uploaddd(request):
    documents = {
        {
            "@search.action": "upload",
            "HotelId": "1",
            "HotelName": "Secret Point Motel 2020",
            "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
            "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
            "Category": "Boutique",
            "Tags": [ "pool", "air conditioning", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1970-01-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "677 5th Ave",
                "City": "New York",
                "StateProvince": "NY",
                "PostalCode": "10022",
                "Country": "USA"
            }
        },
        {
            "@search.action": "upload",
            "HotelId": "2",
            "HotelName": "Twin Dome Motel",
            "Description": "The hotel is situated in a  nineteenth century plaza, which has been expanded and renovated to the highest architectural standards to create a modern, functional and first-class hotel in which art and unique historical elements coexist with the most modern comforts.",
            "Description_fr": "L'hôtel est situé dans une place du XIXe siècle, qui a été agrandie et rénovée aux plus hautes normes architecturales pour créer un hôtel moderne, fonctionnel et de première classe dans lequel l'art et les éléments historiques uniques coexistent avec le confort le plus moderne.",
            "Category": "Boutique",
            "Tags": [ "pool", "free wifi", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1979-02-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "140 University Town Center Dr",
                "City": "Sarasota",
                "StateProvince": "FL",
                "PostalCode": "34243",
                "Country": "USA"
                }
        },
    }   
    return JsonResponse({'doc': documents })

你在空{}中犯了一个错误

documents = {
        "@search.action": "upload",
        "HotelId": "1",
        "HotelName": "Secret Point Motel 2020",
        "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
        "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
        "Category": "Boutique",
        "Tags": ["pool", "air conditioning", "concierge"],
        "ParkingIncluded": "false",
        "LastRenovationDate": "1970-01-18T00:00:00Z",
        "Rating": 3.60,
        "Address": {
            "StreetAddress": "677 5th Ave",
            "City": "New York",
            "StateProvince": "NY",
            "PostalCode": "10022",
            "Country": "USA"
        }
    }
    # Mistake
    documents = {
        { #<- mistake
            "@search.action": "upload",
            "HotelId": "1",
            "HotelName": "Secret Point Motel 2020",
            "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
            "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
            "Category": "Boutique",
            "Tags": [ "pool", "air conditioning", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1970-01-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "677 5th Ave",
                "City": "New York",
                "StateProvince": "NY",
                "PostalCode": "10022",
                "Country": "USA"
            }
        }, #<- mistake
    ```
    if you want store many dicts:
    ```
    documents = [
        {
            "@search.action": "upload",
            "HotelId": "1",
            "HotelName": "Secret Point Motel 2020",
            "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
            "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
            "Category": "Boutique",
            "Tags": [ "pool", "air conditioning", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1970-01-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "677 5th Ave",
                "City": "New York",
                "StateProvince": "NY",
                "PostalCode": "10022",
                "Country": "USA"
            }
        },
        {
            "@search.action": "upload",
            "HotelId": "2",
            "HotelName": "Twin Dome Motel",
            "Description": "The hotel is situated in a  nineteenth century plaza, which has been expanded and renovated to the highest architectural standards to create a modern, functional and first-class hotel in which art and unique historical elements coexist with the most modern comforts.",
            "Description_fr": "L'hôtel est situé dans une place du XIXe siècle, qui a été agrandie et rénovée aux plus hautes normes architecturales pour créer un hôtel moderne, fonctionnel et de première classe dans lequel l'art et les éléments historiques uniques coexistent avec le confort le plus moderne.",
            "Category": "Boutique",
            "Tags": [ "pool", "free wifi", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1979-02-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "140 University Town Center Dr",
                "City": "Sarasota",
                "StateProvince": "FL",
                "PostalCode": "34243",
                "Country": "USA"
                }
        },
    ]
    ```
文档={
“@search.action”:“上传”,
“HotelId”:“1”,
“HotelName”:“秘密点汽车旅馆2020”,
“描述”:“该酒店位于纽约市中心城市的主要商业动脉上,距离时间广场和城市的历史中心以及使纽约成为美国最具吸引力和国际大都市之一的其他名胜仅几分钟之遥。”,
“描述”:“纽约市政厅的市政厅原址艺术商业区。在市政厅历史中心的临时广场上,有几分钟的时间,在纽约市政厅的室内艺术区以及美丽的风景区。”,
“类别”:“精品店”,
“标签”:[“泳池”、“空调”、“礼宾部”],
“停车场包括”:“假”,
“上次翻新日期”:“1970-01-18T00:00:00Z”,
“评级”:3.60,
“地址”:{
“街道地址”:“第五大道677号”,
“城市”:“纽约”,
“州省”:“纽约”,
“PostalCode”:“10022”,
“国家”:“美国”
}
}
#误会
文件={

{#你在空{}中犯了一个错误

documents = {
        "@search.action": "upload",
        "HotelId": "1",
        "HotelName": "Secret Point Motel 2020",
        "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
        "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
        "Category": "Boutique",
        "Tags": ["pool", "air conditioning", "concierge"],
        "ParkingIncluded": "false",
        "LastRenovationDate": "1970-01-18T00:00:00Z",
        "Rating": 3.60,
        "Address": {
            "StreetAddress": "677 5th Ave",
            "City": "New York",
            "StateProvince": "NY",
            "PostalCode": "10022",
            "Country": "USA"
        }
    }
    # Mistake
    documents = {
        { #<- mistake
            "@search.action": "upload",
            "HotelId": "1",
            "HotelName": "Secret Point Motel 2020",
            "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
            "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
            "Category": "Boutique",
            "Tags": [ "pool", "air conditioning", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1970-01-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "677 5th Ave",
                "City": "New York",
                "StateProvince": "NY",
                "PostalCode": "10022",
                "Country": "USA"
            }
        }, #<- mistake
    ```
    if you want store many dicts:
    ```
    documents = [
        {
            "@search.action": "upload",
            "HotelId": "1",
            "HotelName": "Secret Point Motel 2020",
            "Description": "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
            "Description_fr": "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.",
            "Category": "Boutique",
            "Tags": [ "pool", "air conditioning", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1970-01-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "677 5th Ave",
                "City": "New York",
                "StateProvince": "NY",
                "PostalCode": "10022",
                "Country": "USA"
            }
        },
        {
            "@search.action": "upload",
            "HotelId": "2",
            "HotelName": "Twin Dome Motel",
            "Description": "The hotel is situated in a  nineteenth century plaza, which has been expanded and renovated to the highest architectural standards to create a modern, functional and first-class hotel in which art and unique historical elements coexist with the most modern comforts.",
            "Description_fr": "L'hôtel est situé dans une place du XIXe siècle, qui a été agrandie et rénovée aux plus hautes normes architecturales pour créer un hôtel moderne, fonctionnel et de première classe dans lequel l'art et les éléments historiques uniques coexistent avec le confort le plus moderne.",
            "Category": "Boutique",
            "Tags": [ "pool", "free wifi", "concierge" ],
            "ParkingIncluded": "false",
            "LastRenovationDate": "1979-02-18T00:00:00Z",
            "Rating": 3.60,
            "Address": {
                "StreetAddress": "140 University Town Center Dr",
                "City": "Sarasota",
                "StateProvince": "FL",
                "PostalCode": "34243",
                "Country": "USA"
                }
        },
    ]
    ```
文档={
“@search.action”:“上传”,
“HotelId”:“1”,
“HotelName”:“秘密点汽车旅馆2020”,
“描述”:“该酒店位于纽约市中心城市的主要商业动脉上,距离时间广场和城市的历史中心以及使纽约成为美国最具吸引力和国际大都市之一的其他名胜仅几分钟之遥。”,
“描述”:“纽约市政厅的市政厅原址艺术商业区。在市政厅历史中心的临时广场上,有几分钟的时间,在纽约市政厅的室内艺术区以及美丽的风景区。”,
“类别”:“精品店”,
“标签”:[“泳池”、“空调”、“礼宾部”],
“停车场包括”:“假”,
“上次翻新日期”:“1970-01-18T00:00:00Z”,
“评级”:3.60,
“地址”:{
“街道地址”:“第五大道677号”,
“城市”:“纽约”,
“州省”:“纽约”,
“PostalCode”:“10022”,
“国家”:“美国”
}
}
#误会
文件={

{#如果文档中有多个对象,我会返回错误。与我的编辑一样,我有两个文档如果没有键,您无法在dict中添加值。在您的示例中,它是{{'some_key':['data']}但我没有?我只是在向一个对象添加文档请检查我的答案,我为您添加了一些示例,以及代码中的错误。如果我在文档中有多个对象,我会返回错误。就像我的编辑一样,我有两个文档没有键,您无法在dict中添加值。在您的情况下,它{{some_key':['data']}但我没有?我只是在向对象添加文档请检查我的答案,我为您添加了一些示例,以及代码中的错误