来做到这一点
我正在尝试为文件附件实现SPServices中的完整文件。我已经使用成功的完整FUNC完成了该功能。但是实际上不需要完整。因此,我尝试了删除完整Func,并且面临以下错误。
Uncaught TypeError: av.completefunc is not a function
我的代码是:
$().SPServices( {
operation: "Attachment",
listName: ,//name of the list
listItemID: ,//list item id
fileName: attachmentInformation[attachmentName + '_NAME'],
attachment: attachment,
async: false,
debug: true,
completefunc:null
} );
我尝试按照要求删除完整范围,并且面临上述错误。请建议我通过删除完整的方式
您是否尝试过仅删除completefunc
行?
$().SPServices( {
operation: "Attachment",
listName: ,//name of the list
listItemID: ,//list item id
fileName: attachmentInformation[attachmentName + '_NAME'],
attachment: attachment,
async: false,
debug: true
} );