This commit is contained in:
yumoqing 2026-05-06 17:53:00 +08:00
parent 621aa5c347
commit 2113a27e02

View File

@ -410,7 +410,7 @@ _buildDataHandler = async function(from_widget, target, options, desc){
if (options.params instanceof FormData) { if (options.params instanceof FormData) {
method = 'POST'; method = 'POST';
} }
var data = await jc.httpcall(url, { var data = await jc.httpcall(options.url, {
method: method, method: method,
params: options.params params: options.params
}); });