91麻豆精品国产91久久久久久,成人免费无遮挡无码黄漫视频,中文字幕一区二区人妻,适合晚上观看的电影,四虎在线观看

我們的使命

助力跨境賣家高效建立全球銷售網(wǎng)絡(luò)

喜報(bào)2021年我司獲《江蘇省國(guó)家高新技術(shù)企業(yè)》認(rèn)定

分類目錄

文章標(biāo)簽

熱門推薦

相關(guān)咨訊

opencart緩存插件,magento快速導(dǎo)入

2022-10-19 10:26:00 - 米境通跨境電商

   

    首先

    評(píng)估要導(dǎo)入Magento的內(nèi)容.qestion得到回答越清楚,評(píng)估你的選擇就越容易.

    基本上,這些選項(xiàng)包括通過內(nèi)置導(dǎo)入(內(nèi)置方式)導(dǎo)入數(shù)據(jù),通過自定義腳本導(dǎo)入數(shù)據(jù)(腳本方式),通過純SQL(可怕的,可怕的SQL方式)導(dǎo)入數(shù)據(jù)以及通過外部模塊導(dǎo)入(模塊方式).

    內(nèi)置的方式

    首先,您可以通過后端導(dǎo)入csv數(shù)據(jù),如果您可以將基于opencart的產(chǎn)品/客戶以CSV格式提供,然后可以在后端重新導(dǎo)入-請(qǐng)參閱此處或此處(僅限產(chǎn)品).

    這個(gè)解決方案取決于你如何從開放式購(gòu)物車中導(dǎo)出數(shù)據(jù)這一事實(shí),我坦率地說,這不是專家.只要你可以導(dǎo)出到XLS,CSV或類似產(chǎn)品,你應(yīng)該沒問題.

    腳本方式

    如果你不能這樣做,我建議使用Magento自己的模型編寫一個(gè)導(dǎo)入腳本.一個(gè)非?;镜钠?可以幫助您入門:

   
    //placethisfileintheMagentoroot,e.g../import.php,"."beingyouMagentoroot

    //loadthemagentoappwiththeadminstore

    require_once('app/Mage.php');

    Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);

    //dataimport,Iassumeyoucanwritesomesortofinputforthis$datalikereadingazipfileorsomeotherformat,ihere,Iassume,this$dataarrayholdsarraysofproducts($new_product)containinginformationonaproductfromopencart

    $data=...

    //loopoverthedataandcreatetheMagentomodels,thesecanincludeproducts,customers,etc.-forsimplicitythisisdoneforproducts,butcanbedoneforeveryotherdataobjectinmagento

    foreach($dataas$new_product){

    //loadanemptyMagentoproductmodel

    $product=Mage::getModel('catalog/product');

    //settheattributesyouwant

    $product->setData('sku',$new_product['sku']);

    $product->setData('name',$new_product['name']);

    .

    .

    .

    //saveit

    try{

    $product->save();

    }

    catch(Exception$e){

    Mage::logException($e);

    continue;

    }

    }

    這是一個(gè)利用的例子Mage_Catalog_Model_Product,其他數(shù)據(jù)類型可以是Mage_Sales_Model_Order訂單或Mage_Customer_Model_Customer客戶.我可以從內(nèi)存中回憶一下Magento風(fēng)格的一些數(shù)據(jù)對(duì)象實(shí)例化調(diào)用的代碼:

    Mage_Catalog_Model_Product可以實(shí)例化為Mage::getModel('catalog/product')

    Mage_Catalog_Model_Category可以實(shí)例化為Mage::getModel('catalog/category')

    Mage_Customer_Model_Customer可以實(shí)例化為Mage::getModel('customer/customer')

    Mage_Sales_Model_Order可以實(shí)例化為Mage::getModel('sales/order')
    聯(lián)系我們
  • 24H客服
  • 聯(lián)系電話:16651690460(龍經(jīng)理)
  • 微信咨詢:
南京天遙路聯(lián)網(wǎng)絡(luò)科技有限公司,版權(quán)所有 Copyright By ?米境通ERP4.0,2015-2025,蘇ICP備:蘇ICP備15044100號(hào)-4, 蘇公網(wǎng)安備:32011402011043