Angular select 中的默认文本

Default text in Angular select

默认情况下,如果 <select> 中未选择任何内容,angular 使用空值。我怎样才能将其更改为显示 Please select one 的文本?

您没有提供任何代码,因此我无法给出与您的代码相关的示例,但请尝试添加一个选项元素,例如

<select ng-model="item" ng-options="item.category for item in items"
        ng-change="doSomething()">
    <option value="">Please select one</option>
</select>

通过 ng-selected 属性:

<select>
  <option>Hello!</option>
  <option ng-selected="selected">Please select one</option>
  <option>Another option</option>
</select>

查看参考资料:https://docs.angularjs.org/api/ng/directive/ngSelected