且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我如何使用JavaScript的参数调用SSJS方法

更新时间:2023-10-06 13:25:10

您可以在CSJS中执行XSP.partialRefreshPost并使用参数发送你的数据到服务器:

pre $ var p = {key:getHashUrlVars()[key]}
XSP.partialRefreshPost('#{id:_element_to_refresh_}',{params:p});

要访问SSJS中的参数,请尝试以下操作:

  doStuff(param.key)

您可以使用空的div元素作为目标执行SSJS代码。或者您可以使用executeOnServer - 方法: http://xpages.info/XPagesHome。 nsf / Entry.xsp?documentId = 88065536729EA065852578CB0066ADEC



希望这会有所帮助



Sven


I have a url containing a hash e.g http://www.acme.com/home.xsp#key=1234

When the url above loads in the browser I need to call a serverside javascript based on the value in the hash.

I have found a few ways of retriving the hash client side like this

var key = getHashUrlVars()["key"];

so I have the key available in my client side script in the onclientload event.

So in the same onClientLoad event I now need to call my server side javascript method so I have tried the following

'#{javascript:doStuff(key)}' 
'#{javascript:doStuff(' + key + ')}' 

..and a few other ways. but I can't get it to work.

maybe there is an XSP command I can use instead? any ideas how to solve this?

You could do a XSP.partialRefreshPost in CSJS and use parameters to send your data to the server:

var p = { "key": getHashUrlVars()["key"] }
XSP.partialRefreshPost( '#{id:_element_to_refresh_}', {params: p} );

To access the parameters in SSJS just try this:

doStuff( param.key )

You could use an empty div-element as a target execute the SSJS code. Or you can use the executeOnServer - method: http://xpages.info/XPagesHome.nsf/Entry.xsp?documentId=88065536729EA065852578CB0066ADEC

Hope this helps

Sven