以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 前后端分离 狐表后台接收不到传过去的参数 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=175138) |
-- 作者:饭浇盖 -- 发布时间:2022/2/21 22:18:00 -- 前后端分离 狐表后台接收不到传过去的参数 请教
|
-- 作者:饭浇盖 -- 发布时间:2022/2/21 22:19:00 -- |
-- 作者:饭浇盖 -- 发布时间:2022/2/21 22:20:00 -- 前端代码: submitcomment(){
var self=this;
uni.request({
url:\'/api/addComment\',
method:"POST",
data:{
事项Id:this.data.事项Id,
回复内容:this.commentcontent,
操作人:"dmz"
},
success:function(res){
if(res.data.code==200){
this.$refs.popup.open();
}
}
}) |
-- 作者:有点蓝 -- 发布时间:2022/2/21 22:28:00 -- 使用表单的方式提交数据 |
-- 作者:chen37280600 -- 发布时间:2022/2/22 9:58:00 -- 你确定你这个前端请求,触发了狐表后端事件?我是感觉e.path没正确,压根没有触发到事件 |