我想在前端使用vue和axios实现api:
methods:{
startSpider:function(event){
alert("spider is ready to run!");
let data = {'searchKey':this.searchKey,
'category':this.category,
'num':this.num};
axios.post("{% url 'main:getCommodityInfo'%}",
data,
{headers:{'X-CSRFToken': this.getCookie('csrftoken')}})
.then(response=>{
console.log(response.data)
})
.catch(error=>{
console.log(error);
alert("connection has error")
})
},
当我调用此函数时,我希望从后端获取数据并保留在初始URL。它确实可以接收数据,但是网址很快就改变了。
经过一番探索,我发现浏览器实现了两个请求!首先是POST,然后是GET:
以'searchKey':'switch','category':'electronic','num':60 为例。
为什么会这样?我刚用过POST而不是GET。 axios帖子似乎自动将初始URL与参数拼接在一起。我尝试了很多方法,但都失败了。甚至我也编写了一个类似的小型演示程序进行测试,但是演示程序运行良好!发生了什么?请帮帮我...
更新后的I:赋予服务器行为(django视图),并且与路由器相关的是path('getCommodityInfo/',views.getCommodityInfo, name = 'getCommodityInfo')
def getCommodityInfo(request):
print(request.body)
return JsonResponse({"data":True}, safe=False)
更新II:给我前端表格:
<form>
<label for="searchKey">KeyWords</label>
<input v-model="searchKey" placeholder="Input Search Key" type="string" class="form-control" id="searchKey" name="searchKey">
<label for="category">Commodity Category</label>
<select v-model="selected" id="category" name="category">
<option v-for="option in options" v-bind:value="option.value">
${option.text}
</option>
</select>
<br>
<label for="num">Amount</label>
<input v-model="num" placeholder="Input amount needed" type="string" class="form-control" id="num" name="num" >
<button v-on:click="startSpider" class="btn btn-default">Submit</button>
<p>KeyWords : ${ searchKey }</p>
<p>Category : ${ selected }</p>
<p>Amount: ${ num }</p>
</form>
答案 0 :(得分:0)
由于未设置按钮类型而发生了该错误。 我们可以检查this:
缺少的默认值是“提交按钮”状态。
并且在前端表单中没有按钮的类型,因此按钮类型将是submmit按钮。单击该按钮时,它将自动发送获取请求。
像这样修改按钮:
<button v-on:click="startSpider" class="btn btn-default" type='button'>Submit</button>