我使用meteor-useraccounts来处理用户帐户-包括useraccounts:bootstrap。我的boilerplate直接来自回购协议。
我的问题:
我不明白为什么要放我自己的html/css。
我的config.js:

// Options
AccountsTemplates.configure({
    defaultLayout: 'emptyLayout',
    showForgotPasswordLink: true,
    overrideLoginErrors: true,
    enablePasswordChange: true,

    showLabels: false,
    showPlaceholders: true,

    negativeValidation: true,
    positiveValidation: true,
    negativeFeedback: true,
    positiveFeedback: true,
});

AccountsTemplates.addFields([
    {
        _id: 'firstName',
        type: 'text',
        placeholder: "First Name",
        required: true,
        re: /^[^\d]{2,}$/i,
        errStr: "Please enter your first name.",
    },
    {
        _id: 'surName',
        type: 'text',
        placeholder: "Sur Name",
        required: true,
        re: /^[^\d]{2,}$/i,
        errStr: "Please enter your first name.",
    },
    {
        _id: 'institution',
        type: 'text',
        placeholder: "Institution/Company",
        required: true,
        re: /^[^\d]{2,}$/i,
        errStr: "Please enter the institution or company you work for.",
    },
    {
        _id: 'position',
        type: 'text',
        placeholder: "Position",
        required: true,
        re: /^[^\d]{2,}$/i,
        errStr: "Please enter the your position in the institution/company.",
    },
]);

我在文档中看到您应该用自己的模板替换原始模板,这就是我用Template.myAtForm.replaces("atForm");和以下模板所做的:
<template name="myAtForm">
  {{#unless hide}}
    <div class="at-form">
      {{#if showTitle}}
        {{> atTitle}}
      {{/if}}
      {{#if showError}}
        {{> atError}}
      {{/if}}
      {{#if showResult}}
        {{> atResult}}
      {{/if}}
      {{#if showOauthServices}}
        {{> atOauth}}
      {{/if}}
      {{#if showServicesSeparator}}
        {{> atSep}}
      {{/if}}
      {{#if showPwdForm}}
        {{> atPwdForm}}
      {{/if}}
      {{#if showTermsLink}}
        {{> atTermsLink}}
      {{/if}}
      {{#if showSignInLink}}
        {{> atSigninLink}}
      {{/if}}
      {{#if showSignUpLink}}
        {{> atSignupLink}}
      {{/if}}
    </div> <!-- end main div -->
  {{/unless}}
</template>

这是给定的线框:
html -  meteor :如何设置用户帐户样式-LMLPHP
例如,我需要在哪里添加引导类,以便在一行中有两个输入字段(但不是在wf中看到的每一行中)?或者,我如何设计自己的上传按钮(据我所知甚至没有type:file)?
事件和useraccounts:unstyled包,我不知道把html/css放在哪里。
任何帮助都非常感谢。

最佳答案

答:最好自己写模板
我确信useraccounts做得很好。但它的目标是更简单的ui。我想大多数应用程序都很满意。
但是,您可以使用css设置所有字段的样式。已将类添加到字段模板(\u id field)。查看生成的html和useraccounts:unstyled包的源代码。然后你就清楚了它的渲染算法是如何工作的。
但正如您在原始文章中提到的,例如没有文件字段。这意味着你必须自己添加模板,还要管理文件上传逻辑/验证。

09-28 02:55