Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 html 代码,想在其中插入一个节点标题(就在“标签”位置),所以这就是我所做的:
<?php $nid = 4; $node = node_load($nid); $title = $node->title; ?> var node = { label : $title };
但它不会出现在drupal中。我做错了什么吗?
谢谢,
杰米
看起来您正在尝试将 php 变量打印到 HTML 中,在这种情况下,您需要将其包含在 php 标记中并使用 print 函数,如下所示:
<?php print $title; ?>