1

正如脸书所说

For privacy reasons, the input to your function will be only the custom fields you requested, on blur or submit.

确实电子邮件不是自定义字段,但是当用户单击“x”(交叉)手动填写详细信息时,仍然form.email保留undefined吗?

这是一个 facebook 错误,是否有任何修复/解决方案?

4

1 回答 1

1

好吧,我通过使用“视图”属性找到了解决方法

在我添加的字段列表中

fields="[
 {'name':'email','view':'prefilled'},
 {'name':'xemail','view': 'not_prefilled','description':'Email Address:','type':'text'}]";

现在电子邮件与 fb 一起使用,xemail 与 fb 一起使用,而我的异步验证器在没有 fb 的情况下使用 form.xemail。

于 2012-09-14T08:49:04.223 回答