掲示板

serveResource()

11年前 に Mohammad Haji Rajab Ali によって更新されました。

serveResource()

New Member 投稿: 7 参加年月日: 11/09/10 最新の投稿
Hi,
I have wrote a portlet and use serveResource() for convert text to speech,
but i can not send text by document.getElementById().value in value at tag
onClick="location.href = '<portlet:resourceURL><portlet:param name="msg" value="<script languege=javascript>document.getElementById("msg").value;<script/>" /></portlet:resourceURL>'"
please help how can i send textbox.text to value of tag serveResource.
thumbnail
11年前 に Hitesh Methani によって更新されました。

RE: serveResource()

Regular Member 投稿: 171 参加年月日: 10/06/24 最新の投稿
Hi Mohammad,

Try putting the required text box in form, and submit the form onClick with resourceURL, this will pass the msg as request param.

Thanks and Regards,
Hitesh Methani
thumbnail
11年前 に Ravi Kumar Gupta によって更新されました。

RE: serveResource()

Liferay Legend 投稿: 1302 参加年月日: 09/06/24 最新の投稿
Mohammad, What you are trying is incorrect. You are trying to pass a javascript value to java before it is generated. Instead, call a javascript function on click. Construct the url(without the msg param). You should be using ajax for calling serveresource() method. So, send that msg param with Ajax parameters. like this..
$.post(url,{msg:"my masage"},function(data){

});

HTH
thumbnail
11年前 に sheela mk によって更新されました。

RE: serveResource()

Regular Member 投稿: 111 参加年月日: 12/02/17 最新の投稿
Hai..Pls..Let me know how to dispatch from serveResource() method to jsp Page..


getPortletConfig().getPortletContext().getRequestDispatcher(
response.encodeURL("//view.jsp")).include(request, response);

Whats wrong using above line..I do get view.jsp page content on White Screen..Pls Let me know..Whats wrong...
thumbnail
11年前 に Priyanka Dhingra によって更新されました。

RE: serveResource()

Liferay Master 投稿: 501 参加年月日: 11/12/20 最新の投稿
Hi sheela,
resourceResponse.setContentType("application/json");
		resourceResponse.setCharacterEncoding("UTF-8");
		resourceResponse.getWriter().write(jsonFeed.toString());

you can use this.
and you can put your data like
JSONObject jsonFeed = JSONFactoryUtil.createJSONObject();
jsonFeed.put("data", keyValues);
thumbnail
11年前 に sheela mk によって更新されました。

RE: serveResource()

Regular Member 投稿: 111 参加年月日: 12/02/17 最新の投稿
Then how to go next .jsp page..from serveResource()

Like in processAction()..we use actionResponse.setRenderParameter("jspPage","/result.jsp");emoticon
11年前 に Hussain Shaikh によって更新されました。

RE: serveResource()

Junior Member 投稿: 44 参加年月日: 12/06/07 最新の投稿
Hi,
You don't go to a different page using serverResource(). It is basically ajax call to refresh a portion of your jsp page.
you create a resource url first, in your jsp page like this
<portlet:resourceURL var="variable1" id="identification1" escapeXml="false" />

write ajax function,
ajax.request({
url:"${variable1}",
param:{
param1:"hi"
},
success:function(response){
alert("hi");
}

in your controller if your portlet is spring mvc
@ResourceMapping(value="identification1")
// your method here

you can open your response in a new window using anchor tag,
<a target="_blank" href="${variable1}"
you don't need to write ajax function in this case.

hope it helps
Thanks
11年前 に Ranen Das によって更新されました。

RE: serveResource()

Regular Member 投稿: 137 参加年月日: 11/04/06 最新の投稿

$.post(url,{msg:"my masage"},function(data){

});


Question to Mr Ravi Kumar Gupta - DOES LIFERAY SUPPORT '$', what I know it does not - one has to use like this 'jQuery.post(url,,)' - can you explain '$' ??
thumbnail
11年前 に David H Nebinger によって更新されました。

RE: serveResource()

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
$ was (is) a shortcut for jQuery, but you should not use the $ as I believe 6.x has it as a shortcut for AUI...

Stay away from the $ as it will just make your life difficult.
thumbnail
11年前 に Vishal Panchal によって更新されました。

RE: serveResource()

Expert 投稿: 289 参加年月日: 12/05/20 最新の投稿
David H Nebinger:
$ was (is) a shortcut for jQuery, but you should not use the $ as I believe 6.x has it as a shortcut for AUI...

Stay away from the $ as it will just make your life difficult.


Hi David,

you are right , some days ago I had a same problem with "$" but after that instead of using "$" I put "jQuery" and it works.!


Thanks&Regards,
Vishal R. Panchal
11年前 に sangeeth k によって更新されました。

RE: serveResource()

Regular Member 投稿: 114 参加年月日: 12/04/22 最新の投稿
HI team,

I am facing issue including jsp page using serveResource(),

my scenario I have 3 tabs with images onclick of each tab i am including jsp page..

I am not using liferay tabs....using jquery tabs:

so


<portlet:resourceurl var="fetchJsp">

    <portlet:param name="fetchJsp" value="/html/vital/single.jsp" />

</portlet:resourceurl>

[b]IN action file:[/b]

	public void serveResource(ResourceRequest resourceRequest,
			ResourceResponse resourceResponse) throws IOException,
			PortletException {
		 String jspPage = resourceRequest.getParameter("fetchJsp");
		    System.out.println("jspPage==&gt;"+jspPage);
		    if (jspPage != null) {

		    	include(jspPage, resourceRequest, resourceResponse, PortletRequest.RESOURCE_PHASE);
		    	
		       
		    }
		    else {
		        super.serveResource(resourceRequest, resourceResponse);
		    }		
		
	}
In jsp page:


<div class="result"></div>
  
    
<script>
    
    function ajaxcallTofetchpage()
    {
		
       $.ajax({
           type: "GET",
           url: "<%= fetchJsp %>",
          
           success: function(msg){
        	//   alert(msg);
        	   $('.result').html(msg);
           }
         });
    }
</script>