信标预填充功能

时间:2019-02-21 06:15:41

标签: javascript beacon

我已经设置了Beacon的“识别”物品,可以使用Beacon("open");

打开

但是当我尝试使用prefill函数时,出现了一些错误。

Beacon("prefill", {
    name: "Steve Aoki",
    email: "steve@aoki.com",
    subject: "Need help with invoice",
    text: "Hello, I need some help with my invoice. See attached.."
})

错误:Uncaught TypeError: Cannot read property 'filter' of undefined 我错过了任何代码吗?预先感谢。

参考here

1 个答案:

答案 0 :(得分:0)

您需要有一个fields数组,因为在您发布的示例中,您的代码没有的一件事是一个fields数组。由于filter是一个数组方法,因此也会显示出来,如果没有fields.filter,则调用fields会导致undefined错误。