新的要求js并仍然使用knockout js学习。我在现有的项目中实现了需要js但是无法通过ajax获取我的数据。当我尝试运行此行Uncaught TypeError: GDI_Application.fetchdata is not a function
时,我当前收到错误:GDI_Application.fetchdata();
。我需要这个功能来启动整个活动。
我尝试通过将console.logs放在函数的不同部分来调试代码,但没有一个回来。所以它甚至都没有试图推出它。我甚至在控制台中尝试了incidentViewModel.fetchdata();
,但又回来了同样的错误。然后尝试用incidentViewModel.fetchdata;
做咯咯笑,但我回来了undefined
。
以下是我到目前为止的代码。问题似乎出现在Main.js文件或GDI_Application文件中。整个上午一直在盯着它,但没有发现任何明显的东西。
在这一点上寻找任何建议。你们认为这会是什么问题?
Main.js文件代码:
require.config({
paths: {
"jqueryUI": "../assets/jqueryUI/jquery-ui.min",
"bootstrap": "bootstrap.min",
"bootstrap_select": "../assets/silviomoreto-bootstrap-select-a8ed49e/dist/js/bootstrap-select.min",
"jquery_timepicker": "jquery-ui-timepicker-addon",
"jqueryui_timepicker_ext": "jquery-ui-sliderAccess",
"moment": "moment",
"cookie": "js.cookie",
"knockout-amd-helpers": "knockout-amd-helpers.min",
"text": "text"
},
"shim": {
bootstrap: {
deps : [ 'jquery'],
exports: 'Bootstrap'
},
bootstrap_select: {
deps : [ 'jquery', 'bootstrap'],
exports: 'Bootstrap_Select'
},
jquery_timepicker: {
deps : [ 'jquery'],
exports: 'Jquery_Timepicker'
},
jqueryui_timepicker_ext: {
deps : [ 'jquery'],
exports: 'Jqueryui_Timepicker_Ext'
}
}
});
require(["knockout", "GDI_Application", "GDI_Buttons", "GDI_common", "knockout-amd-helpers", "text", "moment"], function (ko, GDI_Application) {
ko.amdTemplateEngine.defaultPath = "../templates";
ko.applyBindings(new GDI_Application());
GDI_Application.fetchdata();
});
这是我的GDI_Application.js文件:
define(["knockout", "jquery", "jqueryUI", "bootstrap", "bootstrap_select","jquery_timepicker", "jqueryui_timepicker_ext", "moment"], function(ko, $) {
ko.bindingHandlers.modal = {
init: function (element, valueAccessor) {
$(element).modal({
show: false
});
var value = valueAccessor();
if (typeof value === 'function') {
$(element).on('hide.bs.modal', function() {
value(false);
});
}
ko.utils.domNodeDisposal.addDisposeCallback(element, function () {
$(element).modal("destroy");
});
},
update: function (element, valueAccessor) {
var value = valueAccessor();
if (ko.utils.unwrapObservable(value)) {
$(element).modal('show');
} else {
$(element).modal('hide');
}
}
}
incidentViewModel = function IncidentViewModel() {
var self = this;
self.showDialog = ko.observable(false);
self.incidents = ko.observableArray();
self.currentIncident = ko.observable();
Incident.BASE_URL = '../../_vti_bin/listData.svc/GDI_DEV_Incidents';
Incident.CREATE_HEADERS = {"accept": "application/json;odata=verbose"};
Incident.UPDATE_HEADERS = {"accept": "application/json;odata=verbose","If-Match": "*"};
self.fetchdata = function() {
console.log("fetching - Attempting to execute code.");
$.getJSON(Incident.BASE_URL+filterlist+orderlist,
function(data) {
if (data.d.results) {
self.incidents(data.d.results.map(function(item) {
return new Incident(item);
}));
$('#loading').hide("slow");
$('#IncidentTable').show("slow");
console.log("fetching data completed");
}else {
console.log("no results received from server");
}
});
}
self.saveorupdate = function() {
console.log("save function executed");
var id = this.ID,
url = Incident.BASE_URL + (id ? '(' + encodeURIComponent(id) + ')' : '');
console.log(url);
return $.ajax(url, {
type: id ? "MERGE" : "POST",
data: ko.toJSON({
Description: this.Description,
Incident: this.Incident
}),
processData: false,
contentType: "application/json;odata=verbose",
headers: id ? Incident.UPDATE_HEADERS : Incident.CREATE_HEADERS,
success: function (data) {
incidentViewModel.fetchdata();
console.log("Record was sucessfully saved.");
}
});
}
self.ShowSelectedIncident = function(data) {
self.currentIncident(data);
self.showDialog(true);
console.log("The show selected incident has been ran.");
}
self.clearCurrentIncident = function() {
self.showDialog(false);
self.currentIncident(null);
}
self.AddNewIncident = function() {
self.showDialog(true);
self.currentIncident({ID:"",Description:"",Incident:""});
}
}
function Incident(data) {
var self = this;
self.ID = data.ID;
self.Description = ko.observable(data.Description);
self.Composante = ko.observable(data.Composante);
self.Incident = ko.observable(data.Incident);
self.ÉtatValue = ko.observable(data.ÉtatValue);
self.PrioritéValue = ko.observable(data.PrioritéValue);
self.Duré = ko.observable(data.Duré);
self.Service = ko.observable(data.Service);
self.Début_imputabilité = ko.observable(data.Début_imputabilité);
self.Début_de_interruption = ko.observable(data.Début_de_interruption);
self.Fin_de_interruption = ko.observable(data.Fin_de_interruption);
self.Groupe_Support_Prime = ko.observable(data.Groupe_Support_Prime);
self.ResponsableValue = ko.observable(data.ResponsableValue);
self.Impact = ko.observable(data.Impact);
self.Dépanage = ko.observable(data.Dépanage);
self.Suivi = ko.observable(data.Suivi);
self.Ressources = ko.observable(data.Ressources);
}
return incidentViewModel;
});
答案 0 :(得分:1)
从查看代码开始,fetchdata不是静态调用。它需要一个实例。更改以下代码:
ko.applyBindings(new GDI_Application());
GDI_Application.fetchdata();
为:
var app = new GDI_Application();
ko.applyBindings(app);
app.fetchdata();
希望这有帮助。