gpt4 book ai didi

Jquery 在 ngview 中不起作用

转载 作者:行者123 更新时间:2023-12-01 05:41:56 32 4
gpt4 key购买 nike

我正在使用 angularjs 和 jquery(用于菜单等),但我不知道为什么我不能使 jquery(eq.简单的 Accordion 菜单)像 this 那样工作。 ,全部在里面<div ng-view> ,我尝试了所有方法,但没有成功,请帮助我

这是我的 Angular 代码

var myApp = angular.module("myApp",['ngRoute']);
$url ="/load.php?stundent=<? echo $_GET["all"]; ?>";
myApp.factory('myService',function($http){
var getData = function() {
return $http({method:"GET", url:$url}).then(function(result){
return result.data;
});
};
return { getData: getData };
});


myApp.config(function($routeProvider) {
$routeProvider
.when('/', {
templateUrl : 'main.html',
controller : 'ItemsController'
})
// route for the home page
.when('/one', {
templateUrl : 'one.html',
controller : 'ItemsController'
})

// route for the about page
.when('/two', {
templateUrl : 'p/two.html',
controller : 'othercontroller'
});
});
myApp.controller('othercontroller', function othercontroller($scope,$http) {
...
});

myApp.controller('ItemsController', function ItemsController($scope,myService,$timeout,$http) {
...
}

最佳答案

如果您可以选择使用 jQuery,我建议您使用 UI Bootstrap 或 AngularStrap 来完成此类操作。正如其他人所说,自定义指令将允许您使用 jQuery。
Here's an example from another question

关于Jquery 在 ngview 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30152617/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com