|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
# P# h/ `. @# S! T6 C5 w! K. [; R
( O& T7 l' S$ e; A2 h$ i6 q& t. q4 `1 T
( \- S6 Z1 q) D- [% a8 e0 G
" x9 R5 C7 \5 `% D2 L4 u* v6 KTechnique
) M& w: M4 ]8 o1 |; V# O" E/ \There is no difference in setting up a query for a single Item or for many. Only the
" d) G1 ]2 ]0 J6 u; ~criteria define the set size returned. In this recipe you create an Item and populate
/ C8 l y, ~% F# D4 pthe query criteria, apply it, and iterating over the Items returned producing a HTML 1 e. y. B4 i3 T1 Y" \; R
<TABLE> fragment.
?! T# Y3 V; r+ N
8 Q Y5 ]7 P G7 o% x4 ^- \: `+ J1 a7 J Z' p0 J- c9 a
JavaScript - c/ b% e% q1 Q2 q6 T7 L. _/ N7 t
var qryItem = this.newItem("Part","get");
% H' U! D7 U' H+ B% I! qqryItem.setAttribute("select","item_number,description,cost");
% z' ^+ V/ w; t/ \qryItem.setProperty("cost", "100", "gt"); & s1 M4 }# p5 I2 j
var results = qryItem.apply(); ( s$ G& Y# ] T0 M9 x& q" f& Y
var count = results.getItemCount();
& x8 r/ w8 K' b$ t% P, \6 {var content = "<table>"; ! b# Y, j# A8 ^
for (var i=0; i<count; ++i)
! C# i6 W! H8 Z" C0 \* g* u{
V6 m- ~% d6 L- o$ U# l! t6 O var item = results.getItemByIndex(i);
7 p7 g. Q& S4 D8 k/ c. s7 W$ J. A4 h content += "" +
7 k% x& S! I5 d! @; _ "<tr>" +
P$ O+ u) d( c2 G# n: A6 q# I "<td>" + item.getProperty("item_number") + "</td>" +
" n) s7 C- G+ w% k+ a4 \) j. I4 s "<td>" + item.getProperty("description") + "</td>" +
* |5 I) _- c i: `8 w! Z "<td>" + item.getProperty("cost") + "</td>" + . t4 {3 @% n6 ?0 W: y% h4 U
"</tr>";
2 x+ k E$ d! j7 q$ X" s C} 7 [2 T7 H* V9 x2 ]
content += "</table>";
/ v# z" [! l g/ j: j3 @8 g9 kreturn content;
3 l ^4 G1 s8 F8 u o& _ / }) U8 o# W+ A5 t* z
C#
9 o3 H3 O4 E% I& WItem qryItem = this.newItem("Part","get");
) G" ^) {6 H" I7 e w: cqryItem.setAttribute("select","item_number,description,cost");
' X1 D6 a9 s; X& {( g, @# IqryItem.setProperty("cost", "100", "gt");
$ O5 o1 x9 c' S+ N% V# oItem results = qryItem.apply(); + I2 R9 u! u' R% w
int count = results.getItemCount(); $ r5 L; |# r7 s
int i;
3 S' c0 ^" w9 |* P" o- O+ c# ~6 lstring content = "<table>";
( L0 P. j& l( [$ @for (i=0; i<count; ++i) : i. f8 q5 \. l0 N; M
{
- K2 Z+ n, E% F& L& s Item item = results.getItemByIndex(i); , ]' P- X( p# ^3 [! y# q: ^
content += "" +
Z" Y. k) Q/ u8 Q3 ]9 I ^2 a "<tr>" + ) v2 H5 z0 j$ }* X1 ?
"<td>" + item.getProperty("item_number") + "</td>" +
; F, d, n; n& G, T! A9 G% B, D& X "<td>" + item.getProperty("description") + "</td>" + & K' }& \1 X+ Q( X0 F% z2 l
"<td>" + item.getProperty("cost") + "</td>" + 4 U' K/ G: f y9 ~! [8 n) [2 {1 C
"</tr>"; # x, x' L% w1 ^ _* A
}
5 g9 N# D- o* _( c/ |content += "</table>";
; U. v' e% K, \# gInnovator innovator = this.newInnovator(); . q7 I' x0 M" ]( u5 k+ o
return innovator.newResult(content);
, E: G0 P5 r8 I5 T, |, Y1 R
- f# d; _! n# g& S1 f+ O* `VB.Net
% P: L) C+ w7 z0 I3 L) JDim qryItem As Item = Me.NewItem("Part","get") ! m- o1 t0 N: d& p" E. C
qryItem.SetAttribute("select","item_number,description,cost") & w. k; T! U0 f6 }: _
qryItem.SetProperty("cost", "100", "gt")
: ~7 {: X9 F4 bDim results As Item = qryItem.Apply()
" n _0 c: R7 N0 Z' T( r: wDim count As Integer = results.GetItemCount() " C" b" d5 Z5 `; G0 ^4 G/ y
Dim i As Integer 2 Q5 m- _( L& M0 s: u* A: L8 ~' N6 U
Dim content As String = "<table>" . O0 |; u- H* Z9 Z
For i=0 to count - 1
s. i' s; u% v' C F1 y Dim item As Item = results.GetItemByIndex(i)
8 j1 J1 c4 U4 t content += "" + _
# c, C6 l. h0 Q. ~; G* v$ x! ^ "<tr>" + _
/ v1 S- k& v+ G9 z "<td>" + item.GetProperty("item_number") + "</td>" + _ ) W- I3 f' j" A1 S3 ?8 W' B
"<td>" + item.GetProperty("description") + "</td>" + _ 1 H4 T3 L2 n$ b. \3 b% V
"<td>" + item.GetProperty("cost") + "</td>" + _
7 i: A |' [, V) q0 ^7 [( q& b "</tr>"
! X* A! \/ r- G4 b& R6 DNext 6 z* [- v0 z2 n% e* s4 Q7 r
content += "</table>"
3 z, F+ b( y0 Q* u
( t& t7 d2 J* R7 I W4 A& T& mDim innovator As Innovator = Me.NewInnovator() 3 {: Z% H* ]3 H* M
return innovator.NewResult(content) ; L) J* _1 x, d) j
* T- U2 u) @% ~' O
$ I! M- n& i9 l @ |
|