我想制作与
我想将图片链接发送给系统中的用户,这些用户将链接回来从网站获取图片。
ResponseBody
并使用.htaccess重写为 img_user.php ,它执行下面的代码,为请求的uid返回正确的png。
<img src="http://www.example.com/img_user.png?uid=788" />
但是,我找不到执行第一行的方法。而且我不能使用db_query,因为img_user.php不是drupal模板文件。你能否指出任何解释如何实现这一目标的文件或帖子?
答案 0 :(得分:0)
我想我找到了答案。我只需要包含bootstrap.inc然后我可以从任何php文件中完全集成Drupal。
在我的情况下,img_user.php位于网站的根目录:
<dom-module id="element-s">
<template>
<child-element data="{{data}}"></child-element>
</template>
</dom-module>
<script>
Polymer({
is: "element-s",
ready: function() {
console.log(this.data);
},
properties : {
data: {
type: Array,
value: function () {
return [
{name: "name0", surname: "surname0", age: 23},
{name: "name1", surname: "surname1", age: 23},
{name: "name2", surname: "surname2", age: 23}
]
}
}
}
});
</script>
<dom-module id="child-element">
<template>
The prop is <h1>{{data.0.age}}</h1> years old
<h1>{{data.0.surname}}</h1>
</template>
</dom-module>
<script>
Polymer({
is: "child-element",
ready: function() {
console.log(this.data);
},
properties: {
data : Array
}
});
</script>
如果对我正在做的事情有任何其他建议,请添加。谢谢。