在下面的例子中,我试图从多个选择选项中添加一个值。如果我选择多个值,我得到的是一个数组,而不是3个值,即使对于单个值,我得到一个数组作为输入,在显示中我看到的值如截图中的值。对于每个国家,可以有n个朋友,所以placecollection数组有2个键 Place和locfrnd。 所以我从多个选择中获取输入,并希望即使选择了多个值也会显示为单个输入
else if (frnd_exist == 0) {
var frnds = [];
alert("friend does not exist");
var secondName = $scope.Friend;
if (frnd_i == 0) {
frnd_i = $scope.placeCollection[cnt_i].locFrnd.length;
}
$scope.placeCollection[cnt_i].locFrnd[frnd_i] = {
name: secondName
};
}