在Azure云上存储microsoft speaker recognition api数据

时间:2018-03-06 08:34:31

标签: javascript azure microsoft-cognitive

我正在使用Microsoft发言人识别API来识别和验证用户的语音。 但是,每次刷新页面时,所有已注册的配置文件都将丢失。我需要再次使用我的声音注册。

您可以参考此github代码Link to code

一切都很好。有没有办法将它存储在天蓝云上。以下是上述链接中的函数,该函数在数组中存储配置文件ID:

  var Profile = class { constructor (name, profileId) { this.name = name; this.profileId = profileId;}};
  var VerificationProfile = class { constructor (name, profileId) { this.name = name; this.profileId = profileId; this.remainingEnrollments = 3}};
  var profileIds = [];
  var verificationProfile = new VerificationProfile();

1 个答案:

答案 0 :(得分:0)

您正在将配置文件ID存储在内存中。当您刷新信息丢失的页面时。

您需要将ID存储在重新加载过程中持续存在的内容中。例如,local storage