0

ページはオブジェクトです:

page= new function(img_data_url, src, pos_x, pos_y)
{
    this.ImgDataURL= img_data_url;
    this.src= src; 
    this.pos_x= pos_x;
    this.pos_y= pos_y;
}

そして、XMLその詳細を記録するためのフォーマットを作成しました。編集された1ページにはいくつかの「スタンプ」があり、私はいくつかの「ページ」を持っています。

    <Page pid= "0">
<ImgDataURL>asjdfklsadsadfasdf</ImgDataURL>
<Stamp> 
    <src src="../pic/XXX">
    <pos_x>123</pos_x>
    <pos_y>123</pos_y>
    </src>

    <src src="../pic/XXO">
    <pos_x>456</pos_x>
    <pos_y>123</pos_y>
    </src>      
</Stamp>    
</Page>
<Page pid= "1">
<ImgDataURL>asjdfklsadsadfasdf</ImgDataURL>
<Stamp> 
    <src src="../pic/XXX">
    <pos_x>123</pos_x>
    <pos_y>123</pos_y>
    </src>

    <src src="../pic/XXO">
    <pos_x>456</pos_x>
    <pos_y>123</pos_y>
    </src>      
</Stamp>    
</Page>
<Page pid= "2">
<ImgDataURL>asdfsdfasd</ImgDataURL>
<Stamp> 
    <src src="../pic/XXX">
    <pos_x>123</pos_x>
    <pos_y>123</pos_y>
    </src>

    <src src="../pic/XXO">
    <pos_x>456</pos_x>
    <pos_y>123</pos_y>
    </src>      
</Stamp>    
</Page>

ファイル内の情報を取得したい: ImgDataURLsrc of Stamppos_x of Stamp、それらをオブジェクトに割り当てます。 しかし、最初のステップで、 jQueryを使用して「pid」属性 でページ を選択する方法がわかりません。2 つ目は、Stamp タグ内のすべてのコンテンツを取得するにはどうすればよいか、などなど... 最後の部分:結局、私の目的は情報をファイルに保存し、それらをメモリに戻すことです。操作ができるだけ簡単になることを願っています。pos_y of StampXML


(Or should I have better alternative approaches instead of giving it an id?)

srcposition


Any well-designed alternative XML structure is acceptable.

4

1 に答える 1

0

you save your json object in .json file (you can use json_encode if you use php on server)

pages = {
 '0' : {

      'ImgDataURL' : 'whatever'
      ,Stamp       : {
            src : 'whatefcz'
            ,pos_x : 'cdscsdc'
              }

     },

    '1' : {

     'ImgDataURL' : 'whatever'
      ,Stamp       : {
            src : 'whatefcz'
            ,pos_x : 'cdscsdc'
              }

    },

    ...


  }

you can access it directly in your javascript

pages['0'].Stamp.src

you can load it by including it in a script tag before your scripts or calling the server with getJSON after jquery has loaded

于 2013-01-11T02:31:03.703 に答える