function publishPost(postId){
var _csrf = jQuery('*[name="_csrf"]').val();
jQuery.ajax({
type:"POST",
url:"/service/post/publishPost",
data:{"postId":postId,"_csrf":_csrf},
dataType:"json",
success:function(msg) {
if(msg.ret == 0 ){
var idss="isPublishs"+postId;
document.getElementById(idss).innerHTML="已发布";
} else if(msg.r == 1){
var msg=+msg.msg;
alert(msg);
}
}
});
}
相关文章
- 10-01url提交参数类
- 10-01前端动态属性页面的 要用id做name 因为这样方便在提交表单时候取到值
- 10-01编译openwrt时报错build_dir/hostpkg/libubox-2018-07-25-c83a84af/blobmsg_json.c:21:19: fatal error: json.h:
- 10-01json转tree
- 10-01表单提交PostFormHelper
- 10-01.net core实现单文件上传、多文件上传、js提交实现文件上传、图片预览
- 10-01js提交文件或图片,同时提交到2个服务器上
- 10-01elementui上传组件upload一次提交多个文件到后台(前后台代码)
- 10-01经验总结17--submitbutton,ajax提交
- 10-01JSON对象转成formData对象,formData对象转成JSON对象