我尝试为Firefox编写搜索引擎插件,在编写http:www.mytemplate.com/search?q = XXXX等模板时,我使用
<Url type="text/html" method="GET" template="http://www.mytemplate.com/search">
<Param name="q" value="{searchTerms}"/>
</Url>
这很好用。
但如果我需要http:www.mytemplate.com/search/q/XXXX
该如何构建模板呢?
我试过
<Url type="text/html" method="GET" template="http://www.mytemplate.com/search/q/{searchTerms}">
</Url>
但是当我搜索
时,它无法在URL中收集searchTerms答案 0 :(得分:0)
我自己解决了问题。
似乎firefox在重新启动后没有再次加载文件,所以我删除了原来的文件并将另一个文件复制到一个新名称,现在它可以正常工作
<Url type="text/html" method="GET" template="http://www.mytemplate.com/search/q/{searchTerms}">
</Url>