我正在开发一个离子v1应用程序,当我输入手机号码时,网络名称和圈子名称应该在下拉列表中自动更新,就像PayTM等应用程序一样。 。
我已经拥有一个数据库,其中已经根据手机号码的前4位分割了网络。如何在输入手机号码时传递请求?
请提出一些建议。
答案 0 :(得分:0)
<div id="tab2" class="tab">
Page 2 am in friends page
<% if(currentFriend){ // currentFriend is the javascript variable
for(var i=0;i<currentFriend.length;i++){ %>
Friend Name : <%=currentFriend[i]%> }
<%} else { %>
inside else
<%}%>
</div>
向服务器发送'res'值,使用该4位数值搜索db表,获取网络的详细信息
答案 1 :(得分:0)
您可以使用角度1 ng-change
View.html
<input type="text" ng-model="mobilenumber" ng-change="updateotherfields()" />
Controller.js
app.controller('yourCtrl', function($scope) {
$scope.mobilenumber;
$scope.updateotherfields = function(){
if($scope.mobilenumber){
//check the length
if($scope.mobilenumber.length > 4){
console.log($scope.mobilenumber);
var firstfournumbers = $scope.mobilenumber.slice(0, 4);
//now you have your fournumbers
//Do you server code and then update the combobox Model
}
}
}
});