当我尝试将字符串(新)推送到列表框中时,它作为“未定义”插入到列表中。
$http({
method: 'GET',
url: 'http://xxx/api/Maintenance/GetAllFilteredItems',
params: { Pt_Id: PtId}
}).then(function successCallback(response) {
$scope.items = response.data;
}, function errorCallback(response) {
// alert(response);
});
$scope.AddNew = function () {
var Item = [];
Item[0] = 'New'; alert(Item.length);
// $scope.items.splice(0, 0, Item[0].toString());
$scope.items.splice(0, 0, Item[0]);
// $scope.items.push($scope.input);
// $scope.items.splice(0, 0, { itm: 'New'});
$scope.itm = $scope.items[0];
//var item = new String('New')
//$scope.items.splice(0, 0, item);
//$scope.items.unshift(item);
}
尝试了与上述不同的方式,但是没有运气。
答案 0 :(得分:0)
希望这些项目在$ scope中。项目是对象,您正试图在该列表框中插入一个字符串,以便它以未定义的方式插入。
尝试将如下所示的项目推送到列表框中,然后可以推送所需的任何字符串。
公开列表yourmethod(){....} //到$ scope.items