如何在 Parse.com 中向我的 class 添加另一列? (Swift)
How to add another column to my class in Parse.com? (Swift)
我在 Parse 中向 class 添加新列时遇到一些困难。目前我已经制作了一个 class(名为:Venue Data),其中包含餐厅的名称和地理位置。我想向 class 添加一列图像,该图像将与特定餐厅配对。我很困惑我应该怎么做。任何帮助是极大的赞赏。
如果您登录到 Parse 并在您的数据视图中("Core" 应该在顶部突出显示),您应该有几个看起来像 .[=12= 的选项]
单击 + Col
,这应该会为您提供要添加的新列!
如果您谈论的是具体如何添加图像,我会在 Parse 中将图像的 URL 存储为字符串,然后在您的应用中异步加载图像。
Parse 允许您延迟向 class 添加列,这意味着您可以向 PFObject 添加一个字段,如果它不存在于您的 Parse class,Parse 将添加该列给你。
以下是通过代码添加列的方法:
// Prepare image
let imageData = UIImagePNGRepresentation(yourImage)
let imageFile = PFFile(name:"image.png", data:imageData) // "image.png" is the name which would be shown on Parse.com
// Add the new field to your object
yourObject["image"] = imageFile
yourObject.saveInBackground()
您会注意到 Parse 将在其门户网站上创建一个名为 image
的新列。
我在 Parse 中向 class 添加新列时遇到一些困难。目前我已经制作了一个 class(名为:Venue Data),其中包含餐厅的名称和地理位置。我想向 class 添加一列图像,该图像将与特定餐厅配对。我很困惑我应该怎么做。任何帮助是极大的赞赏。
如果您登录到 Parse 并在您的数据视图中("Core" 应该在顶部突出显示),您应该有几个看起来像 单击 如果您谈论的是具体如何添加图像,我会在 Parse 中将图像的 URL 存储为字符串,然后在您的应用中异步加载图像。+ Col
,这应该会为您提供要添加的新列!
Parse 允许您延迟向 class 添加列,这意味着您可以向 PFObject 添加一个字段,如果它不存在于您的 Parse class,Parse 将添加该列给你。
以下是通过代码添加列的方法:
// Prepare image
let imageData = UIImagePNGRepresentation(yourImage)
let imageFile = PFFile(name:"image.png", data:imageData) // "image.png" is the name which would be shown on Parse.com
// Add the new field to your object
yourObject["image"] = imageFile
yourObject.saveInBackground()
您会注意到 Parse 将在其门户网站上创建一个名为 image
的新列。