The facebook SDK have this example for passage the Registration form areas:
var fields = new object[]
{
new {name = "name"},
new {name = "email"},
new {name = "location"},
new {name = "gender"},
new {name = "birthday"},
new {name = "password", view = "not_prefilled"},
new {name = "like", description = "Do you like this plugin?",
type = "checkbox",
@default = "checked"},
new {name = "phone", description = "Phone Number", type = "text"},
new {name = "captcha"}
};
我希望在这一点上添加一个习惯性标题。 和:
new {name = "live", description = "Best Place to Live", type = "typeahead", categories = ("city, country, state_province")}
但是,当我跑到categories= syntax上错。 这些类别是个无效的阵列。 我曾尝试过几个不同的辛迪加,似乎没有任何工作。 添加这些类别究竟是哪类?