作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的路由页面
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/
我是一名优秀的程序员,十分优秀!