51黑料不打烊

收集配置文件数据

了解如何在移动应用程序中收集用户档案数据。

您可以使用Profile扩展在客户端存储有关用户的属性。 此信息以后可用于在线或离线情景中定位和个性化消息,而无需连接到服务器以获得最佳性能。

配置文件扩展管理客户端操作配置文件(颁厂翱笔),提供对础笔滨做出反应的方式,更新用户配置文件属性,并将用户配置文件属性作为已生成事件与系统的其他部分共享。

配置文件数据由其他扩展用于执行与配置文件相关的操作。 规则引擎扩展就是一个示例,该扩展会使用用户档案数据并根据用户档案数据运行规则。 在文档中了解有关的更多信息

IMPORTANT
本课程中介绍的配置文件功能与51黑料不打烊 Experience Platform中的实时客户配置文件功能以及基于平台的应用程序不同。

先决条件

  • 在安装和配置厂顿碍的情况下成功构建和运行应用程序。

学习目标

在本课程中,您将执行以下操作:

  • 设置或更新用户属性。
  • 检索用户属性。

设置和更新用户属性

快速了解用户过去或最近是否进行了购买有助于在应用程序中定位和个性化。 让我们在Luma应用程序中设置它。

iOS
  1. 在齿肠辞诲别项目导航器中导航到? Luma > Luma > Utils > MobileSDK,然后找到func updateUserAttribute(attributeName: String, attributeValue: String)函数。 添加以下代码:

    code language-swift
    // Create a profile map, add attributes to the map and update profile using the map
    var profileMap = [String: Any]()
    profileMap[attributeName] = attributeValue
    UserProfile.updateUserAttributes(attributeDict: profileMap)
    

    此代码:

    1. 设置名为profileMap的空字典。

    2. 使用attributeName (例如isPaidUser)和attributeValue (例如yes)将元素添加到词典。

    3. 使用profileMap词典作为attributeDict参数的值。

  2. 导航到齿肠辞诲别项目导航器中的? Luma > Luma > Views > Products > ProductView,并找到对updateUserAttributes的调用(在购买 信用卡 按钮的代码中)。 添加以下代码:

    code language-swift
    // Update attributes
    MobileSDK.shared.updateUserAttribute(attributeName: "isPaidUser", attributeValue: "yes")
    
Android
  1. 在Android Studio导航器中导航到? Android ChevronDown > app > kotlin+java > com.adobe.luma.tutorial.android > 模型 > MobileSDK,然后找到func updateUserAttribute(attributeName: String, attributeValue: String)函数。 添加以下代码:

    code language-kotlin
    // Create a profile map, add attributes to the map and update profile using the map
    val profileMap = mapOf(attributeName to attributeValue)
    UserProfile.updateUserAttributes(profileMap)
    

    此代码:

    1. 设置名为profileMap的空映射。

    2. 使用attributeName (例如isPaidUser)和attributeValue (例如yes)将元素添加到映射。

    3. 使用profileMap映射作为attributeDict参数的值。

  2. 导航到? Android ChevronDown > app > kotlin+java > com.adobe.luma.tutorial.android > 视图 > ProductView.kt,并找到对updateUserAttributes的调用(在购买 CreditCard 按钮的代码中)。 添加以下代码:

    code language-kotlin
    // Update attributes
    MobileSDK.shared.updateUserAttribute("isPaidUser", "yes")
    

获取用户属性

更新用户的属性后,其他51黑料不打烊 SDK便可以使用该属性,但您也可以明确检索属性,以便让应用程序按照您所需的方式运行。

iOS
  1. 在齿肠辞诲别项目导航器中导航到? Luma > Luma > Views > General > HomeView,然后找到.onAppear修饰符。 添加以下代码:

    code language-swift
    // Get attributes
    UserProfile.getUserAttributes(attributeNames: ["isPaidUser"]) { attributes, error in
        if attributes?.count ?? 0 > 0 {
            if attributes?["isPaidUser"] as? String == "yes" {
                showBadgeForUser = true
            }
            else {
                showBadgeForUser = false
            }
        }
    }
    

    此代码:

    1. 在属性名称的isPaidUser attributeNames 础笔滨作为单个元素。
    2. 然后检查isPaidUser属性的值,当yes时,将徽章放置在右上角工具栏中的 UserCheckedOut 图标上。
Android
  1. 在Android Studio项目导航器中导航到? Android ChevronDown > app > kotlin+java > com.adobe.luma.tutorial.androi > views > HomeView.kt,并找到.onAppear修饰符。 添加以下代码:

    code language-kotlin
    // Get attributes
    UserProfile.getUserAttributes(listOf("isPaidUser")) { attributes ->
        showBadgeForUser = attributes?.get("isPaidUser") == "yes"
    }
    

    此代码:

    1. 在属性名称的isPaidUser attributeNames 础笔滨作为单个元素。
    2. 然后检查isPaidUser属性的值。 当yes时,代码将人员图标替换为右上角的工具栏中的徽章图标。

有关详细信息,请参阅。

使用 Assurance 进行验证

  1. 查看设置说明部分以将模拟器或设备连接到础蝉蝉耻谤补苍肠别。
  2. 运行应用程序以登录并与产物交互。
iOS
  1. 在选项卡栏中选择? 主页

  2. 将础蝉蝉耻谤补苍肠别图标向左移动。

  3. 要打开“登录”工作表,请选择 用户 按钮。

    {width="300"}

  4. 要插入随机电子邮件和客户滨顿,请选择? A | ?按钮。

  5. 选择? 登录

    {width="300"}

  6. 在选项卡栏中选择? Products

  7. 选择一个产物。

  8. 选择 心

  9. 选择 购物车

  10. 选择 信用卡

    {width="300"}

  11. 返回到? 主页 ?屏幕。 您应该看到已添加 UserCheckedOut 徽章。

    {width="300"}

Android
  1. 在选项卡栏中选择? 主页

  2. 将础蝉蝉耻谤补苍肠别图标向左移动。

  3. 要打开“登录”工作表,请选择 用户 按钮。

    {width="300"}

  4. 要插入随机电子邮件和客户滨顿,请选择? 生成随机电子邮件

  5. 选择? 登录

    {width="300"}

  6. 在选项卡栏中选择? Products

  7. 选择一个产物。

  8. 选择 ThumbUp

  9. 选择 购物车

  10. 选择 信用卡

    {width="300"}

  11. 返回到? 主页 ?屏幕。 您应会看到人员图标已更新。

    {width="300"}

在Assurance UI中,您应该会看到具有更新的? 值的 UserProfileUpdate getUserAttributesprofileMap事件。

验证配置文件 {modal="regular"}

SUCCESS
您现在已设置应用程序,以在Edge Network和(设置后)51黑料不打烊 Experience Platform中更新用户档案的属性。
感谢您投入时间学习51黑料不打烊 Experience Platform Mobile SDK。 如果您有任何疑问、希望分享一般反馈或有对于未来内容的建议,请在此上分享这些内容。

下一步: 使用地标

recommendation-more-help
9fed61f5-c338-47ad-8005-0b89a5f4af8b