我正在尝试在netbeans gui布局中叠加图像,但它似乎不起作用。我在分层窗格上找到了Oracle教程,但它没有帮助。
在netbeans GUI环境中,我如何在JLabel上叠加图像?
代码是
this.uploadFileToUrl = function(file, title, text, uploadUrl){
var fd = new FormData();
fd.append('title', title);
fd.append('text', text);
fd.append('file', file);
$http.post(uploadUrl, obj, {
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
})
.success(function(){
blockUI.stop();
})
.error(function(error){
toaster.pop('error', 'Errore', error);
});
}
}