考虑 SimpleSchema ,
ClientsSchema = new SimpleSchema({
"firstName": {
type: String,
label: "First Name *",
max: 20
}
});
在用户界面上显示如下,
我们主要在下面的代码中编写javascript,
Template.Name.onRendered(function(){});
查看来源如下所示
<div class="col-sm-3">
<div class="form-group" data-required="true">
<label for="8fmieRFmLkqYQ5XFF" class="control-label">First Name *</label>
<input type="text" name="firstName" id="8fmieRFmLkqYQ5XFF" required="" data-schema-key="firstName"
maxlength="20" class="form-control">
<span class="help-block"></span>
</div>
</div>
如何更改星号的颜色?我在同一个查询上尝试过各种其他文章但我无法解决它。
答案 0 :(得分:3)
您可能希望在CSS中使用伪元素附加星号。例如,
date_default_timezone_set(Auth::user()->timezone);
然后设计它:
ClientsSchema = new SimpleSchema({
"firstName": {
type: String,
label: "First Name", // remove asterisk from here
max: 20
}
});
此处不需要任何特定于Meteor的内容!