java - How to set json values came from jsp to html using javascript -
java - How to set json values came from jsp to html using javascript -
here code :
<% response.setcontenttype("application/json"); jsonobject json = new jsonobject(); employee employee = new employee("ram","ram@gmail.com"); json.put("employee",employee); out.println(json); %>
i need set json values came jsp html file. parsing js. there thought i'm stucked on here...
if provide code response helpful me..
java javascript json jsp
Comments
Post a Comment