我正在尝试使用 Angular 做一个搜索引擎界面。用户在表单中选择一些参数,单击“搜索”,然后使用参数填充 url$location.search()
用于构建表单的搜索界面参数:
params = {
milestones: [ "a", "b", "c", "d", etc. ],
properties: [
{ "name": "name A", type: "text" },
{ "name": "name B", type: "checkbox" },
{ etc. }
]
}
控制器内部:
$scope.query = $location.search(); // get the parameters from the url
$scope.search = function (query) { // set the parameters to the url
$location.search(query);
};
和表单的html
<select ng-model="query.milestone_name" ng-options="ms for ms in params.milestones">
<option value="">-select milestone-</option>
</select>
<select ng-model="property" ng-options="prop.name for prop in params.properties" ng-change="query.property_name=property.name">
<!-- if the object 'property' was passed in the url, it would look like this `%5Bobject%20Object%5D`, so its 'name' parameter is converted to a string -->
<option value="">-select property-</option>
</select>
<span ng-switch="property.type">
<label ng-switch-when="text">{{query.property_name}}: <input type="text" ng-model="query.property_value"></label>
<label ng-switch-when="checkbox">{{query.property_name}}: <input type="checkbox" ng-model="query.property_value"></label>
</span>
<button ng-click="search(query)">search</button>
页面中的其他地方是结果列表。
用户还可以使用这样的 url 访问搜索结果页面:
http://myapp.com/search?milestone_name=a&property_name=name%20A
几乎一切正常:显示结果列表,使用组件中的正确值预先选择“里程碑”参数select
,但不是“属性”参数,因为它不是字符串,而是对象。
如何将选择组件的默认值(ng-model)设置为对象?
或关于我应该如何做到这一点的任何其他想法?