当我点击地图时,我试着放置一个标记。
我用这个方法
private selectLocation () {
this.map.on('click', function(e) {
var coord = e.latlng;
var lat = coord.lat;
var lng = coord.lng;
console.log('You clicked the map at latitude: ' + lat + ' and longitude: ' + lng);
var mp = new L.Marker([e.l
在文件data.js中,我有:
(function () {
data()
function runThisWhenDataIsFinished() {
console.log("Works!");
}
})();
在我拥有的文件app.js中
function data() {
console.log("Im in the data function");
runThisWhenDataIsFinished();
}
当我调用data()时,我得到消息"Im in the data
在像这样调用回调函数后,我得到了这个错误:
function callbackInterval(test) {
Meteor._debug("Test");
}
Meteor.setInterval(callbackInterval(test), 60000);
这是错误输出
Exception in setInterval callback: TypeError: undefined is not a function
at _.extend.withValue (packages/meteor/dynamics_nodejs.js:56)
at packages/me
为什么会出现此错误(jquery-1.7.1.js:3256 Uncaught TypeError: Object 50 has no method 'apply' Uncaught TypeError: Object 50 has no method 'apply'):
var func = function(foo) {
// some code
});
$('.some_class').keyup(func('bar'));
非常感谢:)。