0

テンプレートを適用せずに zen-cart で新しい空白のページを作成するにはどうすればよいですか。JSONデータのみを出力するページを作りたい...

前もって感謝します

4

1 に答える 1

2

ストア ディレクトリに php ファイルを作成します。そのファイルに、ZenCart 関数を使用する場合は、次のように含めることができます。

<?php

include "includes/application_top.php";

set headers for mime type
set headers for not caching
YOUR CODE
echo $json;

// below is optional if you didn't create/edit session
include "includes/application_bottom.php";
于 2013-10-29T18:28:24.687 に答える