SwiftUi-如何在SwiftUi中将字符串值连接到整数

我有一个带有键和值的json作为 “ average_cost_for_two”:20

当我想在用户界面中显示此内容时,我被显示为两个的平均费用:20 但是,由于Json中的值为Int,因此无法将值转换为String以追加“两个人的平均成本”。

基本上我想这样添加到已发布的var中

for i in fetch.nearby_restaurants{
    DispatchQueue.main.async {
        self.datas.append(datatype(id: i.restaurant.id, name: i.restaurant.name, image: i.restaurant.thumb, rating: "Rating: " + i.restaurant.user_rating.aggregate_rating, cost_for_two: "I want to add my string to show in View here " + i.restaurant.average_cost_for_two,  webUrl: i.restaurant.url))
    }

}

附近的餐厅的关键字为“ average_cost_for_two”:整数

任何帮助将不胜感激。谢谢!!