手机号注册微信号过多过微信了,想从注册了

一个手机号码可以注册多个微信号,你知道吗
首先手机号码注册一个微信号,然后忘记密码,开始申诉,用微信号申诉如果申诉成功,那么恭喜你,你的手机注册的微信号和第一张图是一样的。申诉的时候会出现的问题,就是安卓用户不知道微信号吗,这时候你就用苹果手机查看系统默认的微信号了,因为当你注册微信号的时候,安卓系统看不到系统默认的微信号的,只有苹果系统可以看到默认的微信号。这个时候你注册微信的这个手机号码还可以登录一次微信,注意只能登录一次,登录成功后,你就会看到手机号没有绑定微信了。
一个微信不够用怎么办?
工作和生活中一个微信号不够用怎么办?其实,只需要下载一个“超级分身宝”就可以了,可以无限分身手机上的应用,微信和QQ都可以。
微信分身工具,超级分身宝下载:http://sfs.metaconn.net/
责任编辑:
声明:本文由入驻搜狐号的作者撰写,除搜狐官方账号外,观点仅代表作者本人,不代表搜狐立场。
app数据曲线还可以这样?
可以开100个微信的分身工具
今日搜狐热点您所在的位置:
  下面的这篇文章是教大家如何在小程序开发的时实现手机号注册功能? 教程简单易学,有需要的小伙伴就赶紧和小编一起来学习吧。
  [效果展示]
  [目录结构]
  [贴代码]
  register.wxml
  &view class=&container& style=&height: {{windowHeight}}px&&
  &!--第一步--&
  &view wx:if=&{{step == 1}}& id=&firstStep_Pad& class=&container& style=&height:&&
  &text class=&grayLineHeng& style=&margin-top:55rpx& /&
  &view style=&width:{{windowWidth}}& class=&container-hang&&
  &text style=&color:#c9c9c9;margin:33rpx 0 33rpx 0; width:460text-align:&&国家/地区&/text&
  &text class=&grayLineShu& style=&height:auto&&&/text&
  &text style=&color:#000;width:100%;text-align:margin-top:33rpx&&{{location}}&/text&
  &/view&
  &text class=&grayLineHeng& /&
  &view class=&container-hang& style=&width:{{windowWidth}}&&
  &image src=&{{icon_phone}}& style=&width:49 height: 49 margin:28rpx&/&
  &input id=&input_phoneNum& bindchange=&input_phoneNum&
style=&margin:24rpx 32rpx 0 0;height:49& placeholder=&请输入电话号码&
type=&number&/&
  &/view&
  &text class=&grayLineHeng& /&
  &/view&
  &!--第二步--&
  &view wx:if=&{{step==2}}& id=&secondStep_Pad& class=&container& style=&height:align-items:flex-&&
  &text style=&margin:44 font-size:30rpx&&验证码已经发送到您的手机\n如长时间没有收到,请点击&重新获取&&/text&
  &text class=&grayLineHeng& /&
  &view class=&container-hang& style=&width:{{windowWidth}}&&
  &image src=&{{input_icon}}& style=&width:49 height: 49 margin:28rpx&/&
  &input bindchange=&input_identifyCode& style=&margin:24rpx 32rpx 0 0;height:49& placeholder=&请输入验证码& type=&number&/&
  &/view&
  &text class=&grayLineHeng& /&
  &button bindtap=&reSendPhoneNum& size=&mini& style=&margin-top:23margin-right:23rpx&&重新获取({{time}}s)&/button&
  &/view&
  &!--第三步--&
  &view wx:if=&{{step==3}}& id=&thirdStep_Pad& class=&container& style=&height:margin-top:23rpx&&
  &text class=&grayLineHeng& /&
  &view class=&container-hang& style=&width:{{windowWidth}}&&
  &image src=&{{icon_password}}& style=&width:49 height: 49 margin:28rpx&/&
  &input bindchange=&input_password& style=&margin:24rpx 32rpx 0 0;height:49& placeholder=&请输入密码& password/&
  &/view&
  &text class=&grayLineHeng& /&
  &view class=&container-hang& style=&width:{{windowWidth}}&&
  &image src=&{{icon_password}}& style=&width:49 height: 49 margin:28rpx&/&
  &input bindchange=&input_rePassword& style=&margin:24rpx 32rpx 0 0;height:49& placeholder=&请再次输入密码& password/&
  &/view&
  &text class=&grayLineHeng& /&
  &/view&
  &button
style=&width:{{nextButtonWidth}}margin-top:35rpx&type=&primary&
size=&default& bindtap=&nextStep&&下一步&/button&
  &/view&
  register.wxss
  .container-hang {
  display:
  flex-direction:
  background-color: #
  register.js
  var app = getApp()
  // var step = 1 // 当前操作的step
  var maxTime = 60
  var currentTime = maxTime //倒计时的事件(单位:s)var interval = nullvar
hintMsg = null // 提示var check = require(&../../utils/check.js&)var
webUtils = require(&../../utils/registerWebUtil.js&)var step_g = 1var
phoneNum = null, identifyCode = null, password = null, rePassword =Page({data: {windowWidth : 0,
  windoeHeight : 0,
  icon_phone: &../../img/icon_phone.png&,
  input_icon: &../../img/input_icon.png&,
  icon_password : &../../img/icon_password.png&,location : &中国&,nextButtonWidth: 0,step: step_g,
  time: currentTime
  onLoad: function(){
  step_g = 1
  var that = this
  wx.getSystemInfo({
  success: function(res) {
  that.setData({
  windowWidth : res.windowWidth,
  windowHeight : res.windowHeight,
  nextButtonWidth: res.windowWidth - 20
  onUnload: function(){
  currentTime = maxTime
  if(interval != null){
  clearInterval(interval)
  nextStep :function(){
  var that = this
  if(step_g == 1){
  if(firstStep()){
  step_g = 2
  interval = setInterval(function(){
  currentTime--;
  that.setData({
  time : currentTime
  if(currentTime &= 0){
  clearInterval(interval)
  currentTime = -1
  }, 1000)
  }else if(step_g == 2){
  if(secondStep()){
  step_g = 3
  clearInterval(interval)
  }else{
  if(thirdStep()){
  // 完成注册
  wx.navigateTo({
  url: '../home/home'
  if(hintMsg != null){
  wx.showToast({
  title: hintMsg,
  icon: 'loading',
  duration: 700
  this.setData({
  step: step_g
  input_phoneNum: function(e){
  phoneNum = e.detail.value
  input_identifyCode: function(e){
  identifyCode = e.detail.value
  input_password: function(e){
  password = e.detail.value
  input_rePassword: function(e){
  rePassword = e.detail.value
  reSendPhoneNum: function(){
  if(currentTime & 0){
  var that = this
  currentTime = maxTime
  interval = setInterval(function(){
  currentTime--
  that.setData({
  time : currentTime
  if(currentTime &= 0){
  currentTime = -1
  clearInterval(interval)
  }, 1000)
  }else{
  wx.showToast({
  title: '短信已发到您的手机,请稍后重试!',icon : 'loading',duration : 700})
  function firstStep(){ // 提交电话号码,获取[验证码]if(!check.checkPhoneNum(phoneNum)){hintMsg = &请输入正确的电话号码!&return false
  if(webUtils.submitPhoneNum(phoneNum)){
  hintMsg = null
  return true
  hintMsg = &提交错误,请稍后重试!&
  return false
  function secondStep(){ // 提交[验证码]
  if(!check.checkIsNotNull(identifyCode)){
  hintMsg = &请输入验证码!&
  return false
  if(webUtils.submitIdentifyCode(identifyCode)){hintMsg = nullreturn true}
  hintMsg = &提交错误,请稍后重试!&
  return false
  function thirdStep(){ // 提交[密码]和[重新密码]console.log(password + &===& +
rePassword)if(!check.isContentEqual(password, rePassword)){hintMsg =
&两次密码不一致!&return false}
  if(webUtils.submitPassword(password)){
  hintMsg = &注册成功&
  return true
  hintMsg = &提交错误,请稍后重试!&
  return false
  register.json
  [plain] view plain copy
print?在CODE上查看代码片派生到我的代码片{&navigationBarBackgroundColor&:
&#000&,&navigationBarTitleText&: &填写手机号码&,&enablePullDownRefresh&:
false,&navigationBarTextStyle&: &white&}
  check.js
  // 检测是否有输入
  function checkIsNotNull(content){
  return (content && content!=null)
  // 检测输入内容
  function checkPhoneNum(phoneNum){
  console.log(phoneNum)
  if(!checkIsNotNull(phoneNum)){
  return false
  return true
  // 比较两个内容是否相等
  function isContentEqual(content_1, content_2){if(!checkIsNotNull(content_1)){return false}
  if(content_1 === content_2){
  return true
  return false
  module.exports = {
  checkIsNotNull : checkIsNotNull,
  checkPhoneNum : checkPhoneNum,
  isContentEqual : isContentEqual
  registerWebUtil.js
  // 提交[电话号码]
  function submitPhoneNum(phoneNum){
  // 此处调用wx中的网络请求的API,完成电话号码的提交return true}
  //提交[验证码]
  function submitIdentifyCode(identifyCode){// 此处调用wx中的网络请求的API,完成短信验证码的提交return true}
  // 提交[密码],前一步保证两次密码输入相同function submitPassword(password){//此处调用wx中的网络请求的API,完成密码的提交return true}
  module.exports = {
  submitPhoneNum : submitPhoneNum,
  submitIdentifyCode : submitIdentifyCode,
  submitPassword : submitPassword
&&&&&& 以上就是如何在微信小程序开发的时实现手机号注册功能的全部内容了,大家都学会了吗?
TGP是由腾讯推出的一款游戏助手平台,大部分玩家都会使用TG...
电脑软件排行
移动软件排行
Android应用
读过此文的人还看过
天极大视野
京公网安备84号新手机号被别人绑定了微信怎么办 新号码被注册微信还能如何解决
新手机号被别人绑定了微信怎么办?新号码被注册微信还能如何解决?有一些小伙伴遇到办理的新手机号显示微信号已开通,手机号码以及注册了微信是什么原因呢,下面就让小编为大家介绍一下,希望能对大家有帮助。
微信官方今天就此做出了详细的解释,介绍了微信在登录保护方面的各种措施。
由于运营商有回收手机号的机制,因此买到一个被&二次&放号的新手机号,并用来注册微信的时候,很有可能会遇到这个界面&&
两个不同选项,会导向不同的路径和结果。
一般情况下,大多数刚刚更换了手机号的人都户选择&不是我的,继续注册&。
如果注册成功,那么该手机号和被回收之前的帐户即会自动解绑,并和你新注册的微信号成功绑定。
如果注册失败,可以拨打微信官方客服电话6/6,会有专人帮忙解决。
也有人会或有意、或无意地选择&是我的,立即登录&。
首先,微信会要求你进行短信验证,证明使用该手机号注册微信的行为,的确来自于你的操作。
其次,微信会就你所登录的帐号进行社交关系验证,以下两种情况会先后出现:
第一步:微信朋友验证
在众多头像中,选择属于你的微信朋友的头像若干,选择成功,即可进入到下一个验证步骤。
第二步:行为记录问答
微信将会根据你微信帐号过去的一些行为记录,给你出一张&考试卷&,这里面的&试题&如果你能成功答对,即可登录你的微信帐号。
如果上述验证失败,那么系统将会引导你进行扫码验证,即使用原设备登录微信进行扫码。
如果扫码也未成功,可通过&手机不在身边&-&通过其他方式验证&进入好友辅助流程。
通知微信朋友向你的微信帐号发送指定内容,从而实现辅助验证,审核速度由辅助验证的好友数量决定。审核通过后,才能成功登录你的微信帐号。
在这整个过程中,选错朋友,或答错&题&,或找不到好友辅助验证,都会登录失败。
因此,如果对某微信帐号没有任何了解,也不曾使用过,即使拥有其绑定的手机号,也是无法成功登录的,更别提盗取钱财了。
最后有两点提醒:
1、在注销手机号之前,记得给微信等社交帐号更换绑定的手机号,防止出现帐号权益纠纷。
2、手机号被注销后,发现忘记对微信等社交帐号换绑手机号,可以通过&我-设置-帐号与安全-手机号&,重新绑定新的手机号,使帐号和之前的手机号脱离关系。
本站系本网编辑转载,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。如涉及作品内容、版权和其它问题,请在30日内与本网联系,我们将在第一时间删除内容!()
最新安卓游戏排行
类别:棋牌天地
类别:角色扮演
类别:休闲益智

我要回帖

更多关于 不用手机号注册微信 的文章

 

随机推荐