English 中文(简体)
• 我如何制作一个网上拖网申请用户
原标题:How do I Make a Web Crawling Application User-Friendly

I m 创立一个网络拖网应用程序,我希望用户能够使用。 我担心,对大多数用户来说,网络拖网应用可能过于复杂,因为用户需要:

  1. Understand URL structure (domain, path, etc...).
  2. Understand crawling depth .
  3. Understand file extensions and be able to setup filters to narrow their crawling to achieve better performance (or they ll be frustrated with the program).
  4. Understand where URLs are found in pages (image srcs, links, plain text URLs, etc...).

我能做些什么来帮助用户迅速了解我的方案? 甚至更糟的是,我能做些什么,使使用者能够了解该方案? 我知道这似乎很广泛,但如果你能够把回答限制在网络的“

最佳回答

仅仅因为网络拖网器在实施中很复杂,就意味着它必须复杂使用。 只有提供真正必要的条件,才能对其余部分适用合理的缺省。 这将使你得到80%的使用案例,然后依靠其他20%更愿意了解更多情况。

  1. Why should they have to understand this? Depends on the expected usage, but I would of assumed most uses where crawling a full website, so only the domain is needed.
  2. Gert G s suggestion of a slider with extending folder structure was a good one. This doesn t have to be dynamic with the site in question, just an illustration of what it means.
  3. Forget exposing file extensions, instead offer common types of file with icons, possibly even grouping them (e.g. all common image types, jpg, png, gif, go into one images type). Only give raw file extension settings under an advanced config section, those that need it will understand it.
  4. I don t really see why they need to understand this? Surely that s a job for the crawler.
问题回答

一些想法:

  • Make an interactive user interface (e.g. a slider for depth, which shows a small picture of folders and subfolders opening as they move the slider)
  • Avoid clutter. Divide the settings into logical tabs.
  • Make video tutorials for the things you need to teach them.

也许你可以了解两个或三个网站的“网络”每页两页或三页。 用户选择在哪里找到链接(例如图像、平原文字、链接等),他们选择的网页的部分内容在图像中将受到高度重视。





相关问题
How to start to create an application GUI using C#?

HI! I am new to C# and plan to use it for my application GUI. I am trying to make my GUI similar to SPSS:http://www.spss.com/images/08/statistics_screens/ez_rfm-big.jpg Is this easy in C#? Is there ...

Automatic height of edit box

My shoes application has three items stacked on top of each other (with a stack, of course), in order: A banner An edit box Two buttons in a flow What I want to do is have the banner stay at it s ...

Search by using the keyboard in a list/grid - algorithm

I need to implement a custom search in a grid and I would like to find some user interface guidelines that explain the standard way to implement it. I mean this kind of search that is initiated by ...

UI And TcpClient Issue in vb.net

I m having some problems with a small ircbot i m writing. Basically I connect to the server using a tcpclient in a seperate class, which also runs on its own thread. I want to display the server text ...

UI Convention: Shortcut key for application exit? [closed]

Is there a convention for the shortcut keys for application exit? Some applications uses Alt+X some others use Ctrl+ X and Ctrl+Q. Applications like FF and IE doesnot assign a shortcut at all. So is ...