CN103455482A - Method for searching product models on SharePoint platform according to parameters - Google Patents
Method for searching product models on SharePoint platform according to parameters Download PDFInfo
- Publication number
- CN103455482A CN103455482A CN2012101681364A CN201210168136A CN103455482A CN 103455482 A CN103455482 A CN 103455482A CN 2012101681364 A CN2012101681364 A CN 2012101681364A CN 201210168136 A CN201210168136 A CN 201210168136A CN 103455482 A CN103455482 A CN 103455482A
- Authority
- CN
- China
- Prior art keywords
- product model
- search
- sharepoint
- hurdle
- product
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Pending
Links
- 238000000034 method Methods 0.000 title claims abstract description 13
- 230000000295 complement effect Effects 0.000 claims description 3
- 238000012216 screening Methods 0.000 claims description 2
- 230000009191 jumping Effects 0.000 abstract 1
- 230000006870 function Effects 0.000 description 4
- 230000000694 effects Effects 0.000 description 3
- 238000010586 diagram Methods 0.000 description 2
- 238000005538 encapsulation Methods 0.000 description 1
- 230000001747 exhibiting effect Effects 0.000 description 1
- 238000000605 extraction Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
- 238000012986 modification Methods 0.000 description 1
- 239000007787 solid Substances 0.000 description 1
Images
Landscapes
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
The invention discloses a method for searching product models on a SharePoint platform according to parameters. The method includes the steps: firstly, customizing columns in a SharePoint document library and associating the columns with product model parameters; secondly, acquiring the columns associated with the product model parameters; thirdly, adding text fields to corresponding positions of the columns associated with the product model parameters; fourthly, searching a product model library stored in the SharePoint document library according to input values inputted to the text fields by a customer; fifthly, returning search results. By the aid of the technical scheme, the customer can search the product model library based on the product parameters, search speed is high, keyword search configuration is omitted, and the search results are showed without jumping.
Description
Technical field
The present invention relates to a kind of method that realizes the search of product model parametrization on the SharePoint platform.
Background technology
The Microsoft Office SharePoint Server 2007(MOSS2007 released by Microsoft) provide the platform of Content Management, information management and a work cooperation for enterprise.In MOSS2007, the self-service website based on template, can help user's Rapid Establishment portals at different levels; Webpage representation component technology based on Web parts (Webpart) provides for the user ability of organizing fast page function and content.
In the SharePoint document library, for its essence of storage of information, be the database storage, the document that is uploaded to document library all is resolved in the table that then sexadecimal be stored in the WSS_Content database.The SharePoint document library, by the reading and shine upon of WSS_Content database, is crossed the Web interface by the information exchange of database and is presented, and offers the Fileview of user with the B/S browsing mode.When the user inquires about product model, if use the search server that SharePoint carries to be climbed the net search, the memory source accounted for is a lot, and search speed is very slow, and interface is also friendly not, and parameter query product information that can't the product-based model.
Summary of the invention
Technical matters to be solved by this invention is to provide a kind of method that realizes the search of product model parametrization on the SharePoint platform, and the user can pass through the parameter of input product model.
The technical solution adopted in the present invention is: a kind of method that realizes the search of product model parametrization on the SharePoint platform comprises the following steps:
Step 1, carry out self-definedly to the hurdle in the SharePoint document library, make hurdle and product model parameter correlation connection;
Step 4, the input value according to the client in the text input frame, searched for the product model storehouse be stored in the SharePoint document library;
After adopting technique scheme, can make the parameter that the user can product-based be searched for the product model storehouse, and search speed is fast, without the keyword search configuration, Search Results is showed without redirect.
The accompanying drawing explanation
Fig. 1 is schematic flow sheet according to an embodiment of the invention.
Fig. 2 carries out realizing the effect schematic diagram before the product model parameter search according to an embodiment of the invention.
Fig. 3 carries out realizing the effect schematic diagram after the product model parameter search according to an embodiment of the invention.
Embodiment
Below in conjunction with accompanying drawing, the present invention is made and further illustrating.
With reference to figure 1.A kind of according to an embodiment of the invention method that realizes the search of product model parametrization on the SharePoint platform comprises the following steps:
Step 1, carry out self-definedly to the hurdle in the SharePoint document library, make hurdle and product model parameter correlation connection.
Hurdle is peculiar object in SharePoint, and it comprises text, option type, numeric type, picture/mb-type etc.Can carry out self-defined modification to document library by the SharePoint hurdle, with storage and the displaying that realizes the document extraneous information.By the extraction of the Specifeca tion speeification to product, the hurdle in the SharePoint document library is carried out self-defined, for example can be by hurdle called after length, external diameter etc., make hurdle realize associated with the parameter of product model.
Step 4, the input value according to the client in the text input frame, carry out the search based on parameter to the product model storehouse be stored in the SharePoint document library.
For realizing parametrization search and the friendly echo plex mode as a result of product model, in a preferred embodiment of the invention, step 2 to step 4 is to realize by the Jquery framework of JavaScrip.In step 4, the inquiry screening washer in SharePoint (query filter) has been called in search.The Jquery framework is the project of increasing income, and has lot of advantages, and for example, very light and handy, size is only less than 30KB; Outstanding DOM operation encapsulation; Abundant plug-in unit is supported etc.In the document library of sharepoint, the parameter container customized by hurdle, carry out the displaying based on hurdle by the product model parameter.Because hurdle is the parameter of exhibiting product, so its type is textual value.By the Edition Contains device network components of sharepoint, the JSP code based on the hurdle search that jquery is write is resolved.Add corresponding text input frame on the page, after capturing the value of client's input, realize the search based on parameter.
In one embodiment, obtaining field by the Jquery framework, to add the main code of text input frame as follows:
$("table.ms-listviewtable tr.ms-viewheadertr").each(function()
{
if($("td.ms-vh-group", this).size() > 0)
{
return;
}
var tdset = "";
var colIndex = 0;
$(this).children("th,td").each(function()
{
if($(this).hasClass("ms-vh-icon"))
{
// attachment
tdset += "<td></td>";
}
else
{
// filterable
tdset += "<td><input type='text' class='vossers-filterfield' filtercolindex='" + colIndex + "' /></td>";
}
colIndex++;
});
var tr = "<tr class='vossers-filterrow'>" + tdset + "</tr>";
$ (tr) .insertAfter (this); //the position of definition search box
});
$("input.vossers-filterfield")
.css("border", "1px solid #7f9db9")
.css("width", "100%")
.css("margin", "2px")
.css (" padding ", " 2px ") //the definition search box
The parametrization function of search of product makes the client to be searched for the product model storehouse based on parameter, by the customization on model bank hurdle, realizes the displaying of product model parameter.As shown in Figure 2, have six fields, respectively: name of product, product IDs, spring inside diameter D1, spring outer diameter D2, spring pitch P and number of coils N.It is spring inside diameter D1, spring outer diameter D2, spring pitch P and number of coils N that Jquery framework by JavaScrip obtains the hurdle be associated with Closed Cylindrical spring product model parameter.Be provided with the text input frame below these four fields.Under the Moulds Based on Three-Dimensional Models storehouse of Closed Cylindrical spring, default storage all Closed Cylindrical class motor springs.When the parameter value of input expectation in the text input frame (in the present embodiment, the parameter of input is that spring inside diameter D1 is 1, spring outer diameter D2 is 2, spring pitch P be 4), the Closed Cylindrical spring model be complementary will carry out showing without redirect.It realizes that effect as shown in Figure 3.
Claims (4)
1. a method that realizes the search of product model parametrization on the SharePoint platform, is characterized in that, comprises the following steps:
Step 1, carry out self-definedly to the hurdle in the SharePoint document library, make hurdle and product model parameter correlation connection;
Step 2, obtain the hurdle with product model parameter correlation connection;
Step 3, the text input frame is added in the position corresponding on the hurdle with product model parameter correlation connection;
Step 4, the input value according to the client in the text input frame, searched for the product model storehouse be stored in the SharePoint document library;
Step 5, return to Search Results.
2. the method that realizes the search of product model parametrization on the SharePoint platform as claimed in claim 1, is characterized in that, described step 2 to step 4 is to realize by the Jquery framework of JavaScrip.
3. the method that realizes the search of product model parametrization on the SharePoint platform as claimed in claim 2, is characterized in that, in described step 4, the inquiry screening washer in SharePoint has been called in search.
4. the method that realizes product model parametrization search on the SharePoint platform as claimed in claim 1, it is characterized in that, in described step 5, if search the product model that the input value with the user is complementary, this product model is returned to the client, otherwise rreturn value is mistake.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN2012101681364A CN103455482A (en) | 2012-05-28 | 2012-05-28 | Method for searching product models on SharePoint platform according to parameters |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN2012101681364A CN103455482A (en) | 2012-05-28 | 2012-05-28 | Method for searching product models on SharePoint platform according to parameters |
Publications (1)
Publication Number | Publication Date |
---|---|
CN103455482A true CN103455482A (en) | 2013-12-18 |
Family
ID=49737864
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN2012101681364A Pending CN103455482A (en) | 2012-05-28 | 2012-05-28 | Method for searching product models on SharePoint platform according to parameters |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN103455482A (en) |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN106294367A (en) * | 2015-05-15 | 2017-01-04 | 常州明石晶电科技有限公司 | Search device and search method thereof |
CN113256371A (en) * | 2021-05-11 | 2021-08-13 | 苏州市企淘网络科技有限公司 | Searching system for self-service model selection matching of industrial products |
Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101127617A (en) * | 2006-07-06 | 2008-02-20 | 艾易信息通信有限责任公司 | A multi-party conference device and multi-party conference system and method based on Microsoft Share Point Server |
CN101432736A (en) * | 2006-05-02 | 2009-05-13 | 微软公司 | Efficient screening using web sites |
US20090319285A1 (en) * | 2008-06-20 | 2009-12-24 | Microsoft Corporation | Techniques for managing disruptive business events |
CN101662493A (en) * | 2008-08-25 | 2010-03-03 | 阿里巴巴集团控股有限公司 | Data acquiring method, system and server of user access path |
-
2012
- 2012-05-28 CN CN2012101681364A patent/CN103455482A/en active Pending
Patent Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101432736A (en) * | 2006-05-02 | 2009-05-13 | 微软公司 | Efficient screening using web sites |
CN101127617A (en) * | 2006-07-06 | 2008-02-20 | 艾易信息通信有限责任公司 | A multi-party conference device and multi-party conference system and method based on Microsoft Share Point Server |
US20090319285A1 (en) * | 2008-06-20 | 2009-12-24 | Microsoft Corporation | Techniques for managing disruptive business events |
CN101662493A (en) * | 2008-08-25 | 2010-03-03 | 阿里巴巴集团控股有限公司 | Data acquiring method, system and server of user access path |
Non-Patent Citations (3)
Title |
---|
陈建兵: "基于Sharepoint平台实现油气田地面建设工程项目的运行跟踪", 《电脑知识与技术》, vol. 7, no. 20, 31 July 2011 (2011-07-31), pages 4973 - 4974 * |
陈荔 等: "基于sharepoint的SDN企业协作平台的研究", 《微计算机信息》, vol. 26, no. 63, 22 November 2010 (2010-11-22), pages 34 - 35 * |
黄营: "使用SharePointPortalSrver技术促进现代企业信息协作", 《电脑知识与技术》, vol. 7, no. 7, 23 August 2006 (2006-08-23), pages 14 - 15 * |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN106294367A (en) * | 2015-05-15 | 2017-01-04 | 常州明石晶电科技有限公司 | Search device and search method thereof |
CN113256371A (en) * | 2021-05-11 | 2021-08-13 | 苏州市企淘网络科技有限公司 | Searching system for self-service model selection matching of industrial products |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
KR100849420B1 (en) | Image based retrieval system and method | |
CN102521416B (en) | Data correlation query method and data correlation query device | |
CN103631969B (en) | A kind of generation method and device of report data | |
CN101488151B (en) | System and method for gathering website contents | |
CN102968495A (en) | Vertical search engine and method for searching contrast association shopping information | |
WO2014127535A1 (en) | Systems and methods for automated content generation | |
JP2013531289A (en) | Use of model information group in search | |
CN101611399A (en) | Webpage, website modeling and generation | |
CN101025738A (en) | Template-free dynamic website generating method | |
CN103425690A (en) | Picture information labeling and displaying method based on cascading style sheets | |
CN103309806A (en) | Device and method for fast developing and testing | |
US10776351B2 (en) | Automatic core data service view generator | |
CN105868225A (en) | Data query method, client, server and system | |
CN116992081A (en) | Page form data processing method and device and user terminal | |
CN111382192B (en) | Data list display method and device and electronic equipment | |
CN112487773B (en) | A report generation method, device, equipment and storage medium | |
CN102314494A (en) | Method and equipment for processing webpage contents | |
CN110363206A (en) | Cluster, data processing and the data identification method of data object | |
CN103426095A (en) | Agricultural product source-tracing query method based on android platform | |
CN107203525B (en) | Database processing method and device | |
CN107256266A (en) | Query content display method and system | |
CN104636346A (en) | Webpage data query method and device | |
US9607012B2 (en) | Interactive graphical document insight element | |
CN104408101B (en) | A kind of full range Web information extracts integrated approach | |
CN103455482A (en) | Method for searching product models on SharePoint platform according to parameters |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
C06 | Publication | ||
PB01 | Publication | ||
C10 | Entry into substantive examination | ||
SE01 | Entry into force of request for substantive examination | ||
RJ01 | Rejection of invention patent application after publication |
Application publication date: 20131218 |
|
RJ01 | Rejection of invention patent application after publication |