我正在处理一个带有联系表单的项目,但我的PhpStorm或jQuery给了我一个非常恼人的警告:
未解决的功能或方法已完成()
我已经尝试了this solution,因为它看起来非常相似,但它对我不起作用。也许是因为该帖子和问题是从2014年开始的。
我有这台ATM:
.done(function(data) {
/*some code*/
});
done
功能始终显示此警告。该函数和我所有的整个联系表单都运行良好,但它很烦人。
有没有人对此有更新的修复程序?因为我知道为什么这样做是因为阅读了这样的帖子,但他们的修补程序仍然不适合我。
我知道这可能是重复的。但之前的修复可能已经过时了。我希望你明白这就是我创建这篇文章的原因。
修改
.done(function(data) {
// here we will handle errors and validation messages
if (!data.success) {
// handle errors for name ---------------
if (data.errors.name) {
$('#name').parent().parent().addClass('has-error'); // add the error class to show red input
$('#name').parent().parent().append('<div class="help-block alert-danger">' + data.errors.name + '</div>'); // add the actual error message under our input
}
// handle errors for email ---------------
if (data.errors.email) {
$('#email').parent().parent().addClass('has-error'); // add the error class to show red input
$('#email').parent().parent().append('<div class="help-block alert-danger">' + data.errors.email + '</div>');
}
// handle errors for phone ---------------
if (data.errors.phone) {
$('#phone').parent().parent().addClass('has-error'); // add the error class to show red input
$('#phone').parent().parent().append('<div class="help-block alert-danger">' + data.errors.phone + '</div>');
}
// handle errors for comments ---------------
if (data.errors.comments) {
$('#comments').parent().parent().addClass('has-error'); // add the error class to show red input
$('#comments').parent().parent().append('<div class="help-block alert-danger">' + data.errors.comments + '</div>');
}
if (data.errors.error) {
$('#contact-form').append('<div class="help-block alert-danger">' + data.errors.error + '</div>'); // add the actual error message
}
}
else {
// ALL GOOD! just show the success message!
// empty all inputs
// feedback.show()
$('#contact-form').append('<div class="alert alert-success pull-left collapse">' + data.message + '</div>');
}
});
我看到有些人投票支持这个,因为它应该是一个错字。钩子在我的代码中。所以这不是一个错字。
我的问题是如何修复显示标题中提到的错误的警告。
答案 0 :(得分:1)
PhpStorm缓存了大量文件,因此有一天系统缓存可能会过载。在某些情况下,永远不再需要缓存,例如,如果您经常使用短期项目。 此外,解决某些冲突的唯一方法是清理缓存。
清除系统缓存:
在主菜单上,选择“文件”|使高速缓存/重新启动无效。将显示“无效缓存”消息,通知您缓存将在下次启动时失效并重建。使用对话框中的按钮使缓存无效,重新启动PhpStorm或两者。 请务必注意以下事项:
在PhpStorm重新启动之前,文件实际上不会被删除。 打开和关闭项目不会导致删除任何文件。 Source link here