``
``` uni.request({
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
url: tha.baseURl+"project_bangding", //仅为示例,并非真实接口地址。
method: 'POST',
data: {
UserId: user.id
},
dataType:'json',
success: (res) => {
var result = JSON.parse(res.data.projectList);
}
});