作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是一个新手,试图在Grails上找到Neo4J的用途。
基本上,我已经通过Neo4J浏览器创建了20个杂货项目节点,并且我想创建一个简单的Grails网站,该站点使用户可以搜索杂货项目并直观地显示与之相关的物品。
我的index.gsp有:
<input id="item" />
$('#item').keyup(function() {
var item = $('#item').val();
class Item {
static mapWith = "neo4j"
String name
def index() {
def item = Item.list() [item:item] //No idea, just trying out whatever i find :(
def query = Item.cypherStatic ("""start n=node({Item}) match (n)-[r]->(x) where r='partner' return n, x)
最佳答案
除了Motilals的答案,您还需要一个包装表,该包装表的 Action 会指向您的 Controller
喜欢
<g:form controller="itemController" action="index" >
<input type="text" id="item" name="item" value="" />
<input type="submit" value="submit" >
</g:form>
def item = params.item
$('#item').keyup(function() {
var item = $('#item').val();
$.ajax({
url: "${createLink(controller:'itemController', action:'index')}",
data:"&item="+item
})
.done(function( data ) {
console.log(data)
});
});
.../myproject/item/index
.../myproject/item/
关于grails - 如何将Javascript变量发送到Grails Controller 以查询Neo4J,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20992568/
我是一名优秀的程序员,十分优秀!