简体   繁体   中英

Angularjs select with ng-repeat, on select bind ng-model with object

After my get request i get

$scope.variables = response.data;

my select is:

<select name="varSelect" id="varSelect" ng-model="wid.adapter">
            <option ng-repeat="variable in variables" value="{{variable.id}}">{{variable.name}}</option>
</select>

after that i have two input text fields

<input type="text" ng-model="wid.url" />
<input type="text" ng-model="wid.name" />

On button click i want to post wid

$http.post(some_url, $scope.wid).then(function (response) {
            console.log(response);
});

My problem is that i dont get the object variable in wid.adapter. I gog the id. How to modify my code to get the variable instead of id?

use the variable as the value not the id

and use the ng-option attribute on the select to bind it properly

<select name="varSelect" id="varSelect" ng-model="wid.adapter"
    ng-options="variable.name for variable in variables">
    </select>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM