留言板

serveResource()

Mohammad Haji Rajab Ali,修改在11 年前。

serveResource()

New Member 帖子: 7 加入日期: 11-9-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
Hitesh Methani,修改在11 年前。

RE: serveResource()

Regular Member 帖子: 171 加入日期: 10-6-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
Ravi Kumar Gupta,修改在11 年前。

RE: serveResource()

Liferay Legend 帖子: 1302 加入日期: 09-6-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
sheela mk,修改在11 年前。

RE: serveResource()

Regular Member 帖子: 111 加入日期: 12-2-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
Priyanka Dhingra,修改在11 年前。

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
sheela mk,修改在11 年前。

RE: serveResource()

Regular Member 帖子: 111 加入日期: 12-2-17 最近的帖子
Then how to go next .jsp page..from serveResource()

Like in processAction()..we use actionResponse.setRenderParameter("jspPage","/result.jsp");emoticon
Hussain Shaikh,修改在11 年前。

RE: serveResource()

Junior Member 帖子: 44 加入日期: 12-6-7 最近的帖子
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
Ranen Das,修改在11 年前。

RE: serveResource()

Regular Member 帖子: 137 加入日期: 11-4-6 最近的帖子

$.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
David H Nebinger,修改在11 年前。

RE: serveResource()

Liferay Legend 帖子: 14919 加入日期: 06-9-2 最近的帖子
$ 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
Vishal Panchal,修改在11 年前。

RE: serveResource()

Expert 帖子: 289 加入日期: 12-5-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
sangeeth k,修改在11 年前。

RE: serveResource()

Regular Member 帖子: 114 加入日期: 12-4-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>