最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

angular开发中遇到的问题

来源:动视网 责编:小采 时间:2020-11-27 20:17:30
文档

angular开发中遇到的问题

angular开发中遇到的问题:一、在我们的angular开发中,会请求数据但轮播图等...在请求过数据后他的事件和方法将不再执行; 看我们的解决方案一:app.controller("text",function($scope,$http,$timeout){ $http.get("http://127.0.
推荐度:
导读angular开发中遇到的问题:一、在我们的angular开发中,会请求数据但轮播图等...在请求过数据后他的事件和方法将不再执行; 看我们的解决方案一:app.controller("text",function($scope,$http,$timeout){ $http.get("http://127.0.


一、在我们的angular开发中,会请求数据但轮播图等...在请求过数据后他的事件和方法将不再执行;

看我们的解决方案一:

app.controller("text",function($scope,$http,$timeout){
	$http.get("http://127.0.0.1:3333/huoqu").success(function(data){
	$scope.shuju=data.img
	$timeout(function(){ //在请求完成时,强制更新数据,强制重新运行一次,重新获取数据
	new Swiper(".swiper-container",{
	autoplay:2000,
	autoplayDisableOnInteraction:false,
	loop:true,
	pagination:".swiper-pagination"
	})
	})
	});
	
	});

  解决方案二:(这个虽然可以,但是还是有点小问题)

new Swiper(".swiper-container",{
	autoplay:2000,
	autoplayDisableOnInteraction:false,
	loop:true,
	pagination:".swiper-pagination",
          observer:true, //子元素改变时自动初始化swiper
          observerParents:true, //修改swiper时自动初始化swiper
	})//这是插件中俩方法,当子元素或父元素发生改变时 初始化这个swiper,当然这个只是swiper有相信别的也差不多有自己找找。	

  

二、angular在路由开发单页面应用的过程中;你每个页面都会有事件要触发;但你写的切换后就挂掉了。

解决方案:

    

$scope.slide=function(){

    new Swiper("#slide-rl",{
      autoplay:2000,
      autoplayDisableOnInteraction:false,
      pagination:".swiper-pagination",
      loop:true
    })

}

//把我们的代码都写在angular定义的一个方法中,在要引入的html页面调用就ok了

  

文档

angular开发中遇到的问题

angular开发中遇到的问题:一、在我们的angular开发中,会请求数据但轮播图等...在请求过数据后他的事件和方法将不再执行; 看我们的解决方案一:app.controller("text",function($scope,$http,$timeout){ $http.get("http://127.0.
推荐度:
标签: 开发 问题 遇到的
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top