我目前正在开发一个用经典 asp 编写的项目。我以前使用过这种语言,但我对它生疏了。
在该代码中,我看到以下函数调用:
Result = SwapOEMPart(sItem)
当我查看 SwapOEMPart 时,我看到了这个:
function SwapOEMPart(oemPart)
// Do a bunch of stuff
oemPart = objRS("CCIPartNo") <-- this is the result of the stuff
end function
那有什么作用?它是否用 oemPart 的值填充 Result?它是否改变了 sItem 的值(类似于通过引用传递)?或者也许它是完全不同的东西。
我熟悉通过将函数名称设置为您要返回的值来从 asp 函数返回数据,但在这种情况下,他们正在更改他们传入的参数的值,然后只是结束函数。