Javascript 材料设计中的输入没有主题

Javascript 材料设计中的输入没有主题,javascript,angularjs,material-design,Javascript,Angularjs,Material Design,我有工作,按钮,手推车,列表,但我的输入不是像这里的演示主题: 现在我只是从演示中复制了代码,但它仍然不起作用。以下是html: <div ng-controller="View1Ctrl" layout="column" md-theme="green"> <md-toolbar class="md-primary"> <h1 class="md-toolbar-tools"> Top Secret Project &

我有工作,按钮,手推车,列表,但我的输入不是像这里的演示主题:

现在我只是从演示中复制了代码,但它仍然不起作用。以下是html:

    <div ng-controller="View1Ctrl" layout="column" md-theme="green">
  <md-toolbar class="md-primary">
    <h1 class="md-toolbar-tools">
      Top Secret Project
    </h1>
  </md-toolbar>
  <md-content class="md-padding">
    <form name="projectForm">
      <md-input-container>
        <label>Description</label>
        <input md-maxlength="30" required name="description" ng-model="project.description">
        <div ng-messages="projectForm.description.$error">
          <div ng-message="required">This is required.</div>
          <div ng-message="md-maxlength">The name has to be less than 30 characters long.</div>
        </div>
      </md-input-container>
      <md-input-container>
        <label>Client Name</label>
        <input required name="clientName" ng-model="project.clientName">
        <div ng-messages="projectForm.clientName.$error">
          <div ng-message="required">This is required.</div>
        </div>
      </md-input-container>
      <md-input-container>
        <label>Hourly Rate (USD)</label>
        <input required type="number" step="any" name="rate" ng-model="project.rate" min="800" max="4999" required>
        <div ng-messages="projectForm.rate.$error">
          <div ng-message="required">You've got to charge something! You can't just <b>give away</b> a Missile Defense System.</div>
          <div ng-message="min">You should charge at least $800 an hour. This job is a big deal... if you mess up, everyone dies!</div>
          <div ng-message="max">$5,000 an hour? That's a little ridiculous. I doubt event Bill Clinton could afford that.</div>
        </div>
      </md-input-container>
    </form>
  </md-content>
</div>
结果:


我遗漏了什么?

我在0.6版上也遇到了同样的问题

更新到主分支(当前为0.7-rc3)确实解决了未以材质样式显示的问题


我没有搜索问题队列,但可能会有答案/错误报告。

您有任何错误吗?没有,控制台是空的。您可以创建JSFIDLE或plunkr吗?因为他似乎在为我工作。。
.controller('View1Ctrl', [function View1Controller() {
        $scope.project = {
            description: 'Nuclear Missile Defense System',
            clientName: 'Bill Clinton',
            rate: 500
        };

}]);