當我運行我的應用程序有一個錯誤`對象不是函數(MVC JavaScript)的
"Uncaught TypeError: object is not a function", source: file:///android_asset/www/js/controller.js (2)
我有一個類model.js:
var posAttuale = {
myLat : "myLat",
myLng : "myLng",
myComune : "myComune"
};
和類controller.js :
var infoPos = new posAttuale; //Error is here
//....rest of program....
我該如何解決這個錯誤?
`
好樣的錯誤說,它不是一個函數,它的一個對象,你不能叫'新的' –