我无法在我的应用上预先选择下拉列表项。我的下拉列表来自不同的对象,并且工作正常。有我想要的所有物品。在检查员中,我可以看到角度为选项提供了正确的值。这是在HTML
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"yourFileName" ofType:@"json"];
NSData *jsonData = [[NSData alloc] initWithContentsOfFile:filePath];
NSError *error = nil;
NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];
NSMutableArray *arrUsers = jsonDict[kData];
我将对象sredstvo绑定到$ scope.sredstvo,当我提醒或调试代码时,我可以看到$ scope.sredstvo.ukupna_kolicina_mj有价值。
这是我的控制者:
<select name="mjerneJedinice" id="mjerneJedinice" ng-options="mj.naziv for mj in MjerneJedinice track by mj.id" ng-model="sredstvo.ukupna_kolicina_mj" class="form-control"></select>
我做错了什么?
我可以发布您需要的任何内容。
PS其他形式的模型正确绑定。
致以最诚挚的问候,
Veki