通过ajax提交到url路由
Posted Jamy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过ajax提交到url路由相关的知识,希望对你有一定的参考价值。
$regBoxform.find(‘button‘).on(‘click‘, function(){ /*通过ajax提交请求*/ $.ajax({ type:‘post‘, /*用post 方式提交*/ url:‘/user/register‘, /*提交到api的指定路由路径*/ dataType: ‘json‘, data:{ username: $regBoxform.find(‘[name="username"]‘).val(), password: $regBoxform.find(‘[name="password"]‘).val(), repassword: $regBoxform.find(‘[name="repassword"]‘).val() }, success: function (result) { console.log(result); }, /* error: function(XMLHttpRequest, textStatus, errorThrown) { alert(XMLHttpRequest.status); alert(XMLHttpRequest.readyState); alert(textStatus); }*/ }); })
router.post(‘/user/register‘, function(req, res){ console.log(‘路由是可以使用的‘); });
以上是关于通过ajax提交到url路由的主要内容,如果未能解决你的问题,请参考以下文章
jQuery ajax post提交本页面处理,为啥提交后URL还携带参数
JavaScript 表单使用 Ajax 和 Laravel 路由提交到数据库