gpt4 book ai didi

angularjs - TypeError : i. 匹配不是函数

转载 作者:行者123 更新时间:2023-12-01 07:00:26 25 4
gpt4 key购买 nike

我一直在研究一个drupal angularjs模块。我已经安装了 bootstrap ui,它工作正常。但是当我使用模态框时它不起作用。

Controller 内部的代码:

    $scope.alertOnEventClick = function( event, allDay, jsEvent, view ){
$scope.alertMessage = (event.title + ' was clicked ');
console.log($modal);

var modalInstance = $modal.open({
//templateUrl: Drupal.settings.angularjsApp.basePath + '/ng_node/calender/popup',
template: "<div class='modal-header'><h3 class='modal-title'>I'm a modal!</h3>" +
"</div><div class='modal-body'><ul><li>jfksdfhjksd</li><li>jfksdfhjksd</li><li>jfksdfhjksd</li></ul></div>"+
"<div class='modal-footer'><button class='btn btn-primary'>OK</button>" +
"<button class='btn btn-warning'>Cancel</button></div>",
controller: ModalInstanceCtrl,
scope: $scope
});



function ModalInstanceCtrl($scope, $modalInstance) {
console.log("controller class called")
};

我仍然面临引导 ui 弹出模型的问题。

最佳答案

我之前也遇到过这个问题。通过进一步调查,我可以理解,根据 Angular 指南,隔离范围只能具有自定义指令的属性。如果我们尝试创建一个与任何属性都不匹配的新范围值,则会引发错误。

myModule.directive('directiveName', function factory() {
return {
...
scope: {
'attrName': '@', // OK
'attrName2': '=localName', // OK
'attrName3': '<?localName', // OK
'attrName4': ' = name', // OK
'attrName5': 'name', // ERROR: missing mode @&=
'attrName6': 'name=', // ERROR: must be prefixed with @&=
'attrName7': '=name?', // ERROR: ? must come directly after the mode
}
...
}
});

关于angularjs - TypeError : i. 匹配不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24631034/

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