gpt4 book ai didi

javascript - 如何在 meteor 中提交表单?

转载 作者:行者123 更新时间:2023-12-03 08:51:39 24 4
gpt4 key购买 nike

这是我的路由页面

Router.route('/search', function () {
// render the Home template with a custom data context
this.render('search', {data: {title: 'My Title'}});
});

index.html

<head>
<title>Test</title>
</head>
<body>
</body>

搜索.html

<template name="search">
<form class="new-task">
<input type="text" name="text" placeholder="Type to add new tasks" />
<input type="submit" value="submit">
</form>
</template>

搜索.js

Template.body.events({
"submit .new-task": function (event) {
// Prevent default browser form submit
event.preventDefault();
// Get value from form element
var text = event.target.text.value;
console.log(text)
// Insert a task into the collection
// event.target.text.value = "";
}
});

这里我没有将文本框值获取到 search.js ,页面再次重新加载,并且 url 更改为 http://192.168.1.33:3000/search?text=fgh当我提交表单时

谁能知道如何解决这个问题吗?

最佳答案

您需要在搜索模板上定义事件处理程序:

Template.search.events({
"submit .new-task": function(event){ /* ... */ }
});

关于javascript - 如何在 meteor 中提交表单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32650704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com