Jump to content
  • 0

Spring Jeditable


Dzib
 Share

Question

Привет всем, только начал изучать спринг. Нашел Jeditable — плагин для jQuery. Как должен примерно выгледить метод в класе контролера что б обработать запрос?


<div class="edit_area" id="div_2">Lorem ipsum dolor sit amet, consectetuer
adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore
magna aliquam erat volutpat.</div>


$(document).ready(function() {
$('.edit_area').editable('somepage', {
id : 'id',
name : 'value'
type : 'textarea',
cancel : 'Cancel',
submit : 'OK',
indicator : '<img src="img/indicator.gif">',
tooltip : 'Click to edit...'
});
});

После сабмита данных, они отправляются на сервер методом POST:


id=elements_id&value=user_edited_content

Спасибо за ответы.

Edited by Dzib
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

java spring


public class Block{
public String id;
public String value;

public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}


@RequestMapping(value = "/edit", method = RequestMethod.POST)
public @ResponseBody String test(@ModelAttribute(value="block")Block block, BindingResult result)
{
return block.id + block.value;
}

Писал return block.id + block.value для того что б увидить что оно там присылает, но ничего не отсылает вроде, а вот если написать retun "sometext" то этот текст пересылает.

Из jsp код:


$(document).ready(function() {
$('.editable').editable('edit', {
id : 'id',
name : 'value',
type : 'textarea',
cancel : 'Cancel',
submit : 'OK',
tooltip : 'Click to edit...'
});
});

Link to comment
Share on other sites

  • 0

Точнее работает только если не добавалять ModelAtribute

@RequestMapping(value = "/edit", method = RequestMethod.POST)
public @ResponseBody
String test() {
return "allRight";
}

В даном случае после редактирования блока, ему присваевается содержимое "allRight"

Ну конечно что это не дело, нужно както принять то что передается с клиента.

Смог словить, с помощю @RequestParam("value") но не пойму почему @ModelAttribute не работает

Edited by Dzib
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy