我正在使用node和express。要注册控制器,我打电话:
app.get('/user/:id', function (req, res) {...});
但我想以rfc-6570的方式做到这一点:
app.get('/user/{id}', function (req, res) {...});
我在google代码中搜索了python中的一个实现,但是没有找到任何内容(除了谷歌代码上的死链接http://www.snellspace.com/wp/?p=831)。
一般来说,URI模板并不像第一眼看上去那么容易。看一下RFC中的例子。
PS:我也需要客户端上的URI模板。
答案 0 :(得分:7)
我一直在http://code.google.com/p/uri-templates/wiki/Implementations清理实施列表 - https://github.com/marc-portier/uri-templates有一个JS,但我不确定它是否实现了RFC,也不确定它的质量。
请注意,我们已经开始在此发布测试: https://github.com/uri-templates/uritemplate-test
所以,如果你想检查它,你可以从那里开始。
答案 1 :(得分:4)
截至2014年6月,这些JavaScript实现似乎最完整(规范的第4级)和tested。这三个都支持浏览器和node.js。
npm install uritemplate
npm install uri-templates
npm install URIjs
或bower install uri.js
答案 2 :(得分:0)
关于快递路由器部分,我建议您在hyperschema(read more)中使用您的uri模板......
然后你也可以从express.js支持的路由器的正则表达式中受益。 关于解析参数,您需要像https://github.com/geraintluff/uri-templates这样的RFC 6570实现...
这里有一些.js代码来说明hyperschema的重写 使用RFC 6570将其转换为快速js路由器:
var hyperschema = { "$schema": "http://json-schema.org/draft-04/hyper-schema", "links": [ { "href": "{/id}{/ooo*}{#q}", "method": "GET", "rel": "self", "schema": { "type": "object", "properties": { "params": { "type": "object", "properties": { "id": {"$ref": "#/definitions/id"} }, "additionalProperties": false } }, "additionalProperties": true } } ], "definitions": { "id": { "type": "string", "pattern": "[a-z]{0,3}" } } }
var deref = require('json-schema-deref');
var tv4 = require('tv4');
var url = require('url');
var rql = require('rql/parser');
// DOJO lang AND _
function getDottedProperty(object, parts, create) {
var key;
var i = 0;
while (object && (key = parts[i++])) {
if (typeof object !== 'object') {
return undefined;
}
object = key in object ? object[key] : (create ? object[key] = {} : undefined);
}
return object;
}
function getProperty(object, propertyName, create) {
return getDottedProperty(object, propertyName.split('.'), create);
}
function _rEscape(str) {
return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
}
function getPattern(k, ldo, customCat) {
// ...* = explode = array
// ...: = maxLength
var key = ((k.slice(-1) === '*') ? k.slice(0,-1) : k).split(':')[0];
var cat = (customCat) ? customCat : 'params'; // becomes default of customCat in TS
var pattern = '';
if (typeof ldo === 'object' && ldo.hasOwnProperty('schema')) {
var res = getProperty(ldo.schema, ['properties',cat,'properties',key,'pattern'].join('.'));
if (res) {
console.log(['properties',cat,'properties',key,'pattern'].join('.'),res);
return ['(',res,')'].join('');
}
}
return pattern;
}
function ldoToRouter(ldo) {
var expression = ldo.href.replace(/(\{\+)/g, '{') // encoding
.replace(/(\{\?.*\})/g, '') // query
.replace(/\{[#]([^}]*)\}/g, function(_, arg) {
// crosshatch
//console.log(arg);
return ['(?:[/]*)?#:',arg,getPattern(arg,ldo,'anchor')].join('');
})
.replace(/\{([./])?([^}]*)\}/g, function(_, op, arg) {
// path seperator
//console.log(op, '::', arg, '::', ldo.schema);
return [op,':',arg,getPattern(arg,ldo)].join('');
});
return {method: ldo.method.toLowerCase(), args:[expression]};
}
deref(hyperschema, function(err, fullSchema) {
console.log('deref hyperschema:',JSON.stringify(fullSchema));
var router = fullSchema.links.map(ldoToRouter);
console.log('router:',JSON.stringify(router));
});