如何在 Umbraco 中存储国家和县列表?
我们希望为我们最新的 Umbraco 项目存储国家及其县/州的列表。 其他模块需要这些国家和县 ID 来进行过滤和搜索。
我们没有在所有模块中使用任何自定义数据库表或自定义部分。
我们发现的一种选择是将国家及其县存储为 Umbraco 内容库节点,但不确定对性能的影响。
有没有其他合适的方法来克服这种情况?
We want to store list of countries and thier counties/states for our latest Umbraco project.
These country and county ids are required in other modules for filtering and searching.
We are not using any custom database tables or custom sections all modules.
One option we found is to store country and it's counties as Umbraco Content Library nodes, but not sure about the performance impact.
Is there any other suitable way to overcome this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Umbraco 内容库节点非常适合此目的:
您可以考虑对国家/地区进行分组在地区(或类似地区),因为大约。 250 个节点仍然是内容库中需要查看的大量节点。
Umbraco content library nodes are perfect for this:
You may consider grouping countries in regions (or similar) because approx. 250 nodes is still a lot of nodes to look through in the content library.
还有另一种方式来存储这些数据——静态文件,例如Xml。
但这种方式有一些限制:
1)你不能在Umbraco中管理这些数据
2)你必须编写自己的代码来读取这些数据。
There is another way to store these data - static file, such as Xml.
But this way has some limit:
1) you can not manage these data in Umbraco
2) You have to write your own code to read these data.
我会选择内容库选项。但您也可能会在这里找到一些有用的东西:
http://ucomponents.codeplex.com/documentation
I'd go with the Content Library option. But you may also find something useful here:
http://ucomponents.codeplex.com/documentation