gpt4 book ai didi

jquery - AngularJS - jQuery - ui-sortable g.sortable 不是一个函数

转载 作者:行者123 更新时间:2023-12-01 00:55:48 24 4
gpt4 key购买 nike

我正在 ui-sortable 的帮助下创建一个带有可拖动行的表格

<tbody ui-sortable="sortableOptions" ng-model="model.list">
<tr ng-repeat="item in model.list">
<td>
<div class="form-group">
<input type="text" class="form-control test-input" ng-model="item.Country" ng-readonly="!isEditable">
</div>
</td>
<td>
<div class="form-group">
<input type="text" class="form-control test-input" ng-model="item.Value" ng-readonly="!isEditable">
</div>
</td>
</tr>

这是 Controller 中的代码。

$scope.sortableOptions = {
update: function(e, ui) {

console.log(model.list);
},
stop: function(e, ui) {

console.log(model.list);
}
};

我已经使用了 require.js 和依赖项 ui.sortable已添加到那里。

每当我打开包含此表的页面时,都会收到此错误 -

angular.js:12520
TypeError: g.sortable is not a function
at w (http://localhost:90/bower_components/angular-ui-sortable/sortable.min.js:8:4649)
at x (http://localhost:90/bower_components/angular-ui-sortable/sortable.min.js:8:4721)
at link (http://localhost:90/bower_components/angular-ui-sortable/sortable.min.js:8:5003)
at http://localhost:90/bower_components/angular/angular.js:8835:44
at invokeLinkFn (http://localhost:90/bower_components/angular/angular.js:8841:9)
at nodeLinkFn (http://localhost:90/bower_components/angular/angular.js:8335:11)
at compositeLinkFn (http://localhost:90/bower_components/angular/angular.js:7731:13)
at nodeLinkFn (http://localhost:90/bower_components/angular/angular.js:8330:24)
at compositeLinkFn (http://localhost:90/bower_components/angular/angular.js:7731:13)
at compositeLinkFn (http://localhost:90/bower_components/angular/angular.js:7734:13) <tbody ui-sortable="sortableOptions" ng-model="model.list" class="ng-pristine ng-untouched ng-valid ng-isolate-scope">

你能帮我一下吗?提前致谢

最佳答案

ui-sortable 依赖于 jQuery,jQuery UI 1.9+。检查 ui-sortable js 文件之前是否有这些依赖项,然后您应该将 ui.sortable 注入(inject)到正确的模块中 angular.module('myapp', ['ui.sortable']);

关于jquery - AngularJS - jQuery - ui-sortable g.sortable 不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40045023/

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